修改倒计时待启动时间为0不需要结束

dev_2022-05-11
e 3 years ago
parent 121e24498e
commit 45b3889b0b
  1. 2
      src/pages/assessment/list/index.vue

@ -261,7 +261,9 @@ export default {
let s = Math.floor(countDown.countDown % (60 * 60) % 60);
return `${h > 9 ? h : `0${h}`}:${m > 9 ? m : `0${m}`}:${s > 9 ? s : `0${s}`}`;
} else {
if(countDown.status == 1){
countDown.status = 2
}
return "00:00:00";
}
},

Loading…
Cancel
Save