//倒计时
countDown() {
let count = 0;
let newTime = new Date().getTime();
let endTimeList = this.actEndTimeList;
let countDownArr = [];
endTimeList.forEach(o => {
let endTime = new Date(o).getTime();
let obj = null;
if (endTime - newTime > 0) {
let time = (endTime - newTime) / 1000;
let day = parseInt(time / (60 * 60 * 24));
let hou = parseInt((time % (60 * 60 * 24)) / 3600) + day * 24;
let min = parseInt(((time % (60 * 60 * 24)) % 3600) / 60);
let sec = parseInt(((time % (60 * 60 * 24)) % 3600) % 60);
obj = {
hou: this.timeFormat(hou),
min: this.timeFormat(min),
sec: this.timeFormat(sec)
};
} else {
obj = {
hou: "00",
min: "00",
sec: "00"
};
count++;
}
countDownArr.push(obj);
});
this.countDownList = countDownArr;
this.interval = setTimeout(this.countDown, 1000);
if (count == endTimeList.length) {
if (this.interval) {
clearTimeout(this.interval);
//这一块死循环
this.$router.go(0)
}
}
}
this.$router.go(0) 去掉