mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-mobile.git
synced 2025-12-09 10:56:47 +08:00
Merge branch 'zcwy0428-zsx' into 'master'
Zcwy0428 zsx See merge request !28
This commit is contained in:
@@ -31,7 +31,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view style="height: 50px;"></view>
|
<view style="height: 50px;"></view>
|
||||||
<view v-if="!stop" class="bottom-btns">
|
<view v-if="!stop" class="bottom-btns">
|
||||||
<u-button type="success" text="提交" class="sub" @click="present"></u-button>
|
<u-button type="success" text="提交" class="sub" @click="debouncedPresent"></u-button>
|
||||||
<u-button type="info" text="上一题" @click="prevSub" class="next" v-if="curIndex>0"></u-button>
|
<u-button type="info" text="上一题" @click="prevSub" class="next" v-if="curIndex>0"></u-button>
|
||||||
<u-button type="primary" text="下一题" @click="nextSub" class="next" v-if="curIndex<(total-1)"></u-button>
|
<u-button type="primary" text="下一题" @click="nextSub" class="next" v-if="curIndex<(total-1)"></u-button>
|
||||||
</view>
|
</view>
|
||||||
@@ -92,6 +92,8 @@
|
|||||||
if(this.examId){
|
if(this.examId){
|
||||||
this.loadExamInfo();
|
this.loadExamInfo();
|
||||||
}
|
}
|
||||||
|
this.debouncedPresent = this.debounce(this.present, 500);
|
||||||
|
this.confirmStop = this.debounce(this.submitTest,500)
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
changeTimer(){
|
changeTimer(){
|
||||||
@@ -230,9 +232,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
confirmStop(){
|
// confirmStop(){
|
||||||
this.submitTest();
|
// this.submitTest()
|
||||||
},
|
// },
|
||||||
cancelStop(){
|
cancelStop(){
|
||||||
//应该返回课程面页
|
//应该返回课程面页
|
||||||
this.confirmFinish();
|
this.confirmFinish();
|
||||||
@@ -350,6 +352,16 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
debounce(func, delay) {
|
||||||
|
let timerId;
|
||||||
|
return function (...args) {
|
||||||
|
if (timerId) clearTimeout(timerId);
|
||||||
|
timerId = setTimeout(() => {
|
||||||
|
func.apply(this, args);
|
||||||
|
timerId = null;
|
||||||
|
}, delay);
|
||||||
|
};
|
||||||
|
},
|
||||||
present(){
|
present(){
|
||||||
let $this=this;
|
let $this=this;
|
||||||
let score=this.countTest();
|
let score=this.countTest();
|
||||||
|
|||||||
Reference in New Issue
Block a user