//避免时差
const date = new Date(this.stoptime);
const options = {
timeZone: 'Asia/Shanghai',
hour12: false, // 使用24小时制显示时间
};
const dt = date.toLocaleString('zh-CN', options);
dt就是this.stoptime的时差转换后的正确当前时间