修改为10秒保存一次,考试 时

This commit is contained in:
daihh
2022-08-05 14:55:18 +08:00
parent ba7293b191
commit e4f9066667
2 changed files with 15 additions and 3 deletions

View File

@@ -698,7 +698,9 @@ export default {
stopReckon:function(){
window.clearInterval(this.reckonTimeer)
},
// 开始提交答案
/**
* 开始提交答案
*/
startUpdateAnswer:function(){
if(this.paperQuestion.length==0){
return;
@@ -709,7 +711,7 @@ export default {
let that = this;
this.updateAnswerTimeer =window.setInterval(function(){
that.updateAnswer();
},60000);//测试时可以修改的变小了
},10000);//测试时可以修改的变小了
},
// 停止提交答案
stopUpdateAnswer(){