|
@@ -778,7 +778,7 @@
|
|
|
<u-mask :show="examType != 2 && photoPopup">
|
|
|
<!-- 播放前拍照start -->
|
|
|
<view
|
|
|
- v-if="photoPopup"
|
|
|
+ v-if="examType != 2 && photoPopup"
|
|
|
:mask-close-able="false"
|
|
|
style="bottom: 0; position: fixed; width: 100%; z-index: 999"
|
|
|
>
|
|
@@ -899,6 +899,7 @@ export default {
|
|
|
},
|
|
|
async onLoad(option) {
|
|
|
this.examType = option.type
|
|
|
+ console.log('examType:', this.examType)
|
|
|
this.id = option.id;
|
|
|
this.goodsId = option.goodsid;
|
|
|
this.chapterId = option.chapterId;
|
|
@@ -1981,6 +1982,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
this.$set(this.questionList[bindex], "ques", arr);
|
|
|
+ this.$u.toast('已确认答案')
|
|
|
this.isDoOver();
|
|
|
|
|
|
// let isWrong = this.questionList[bindex].ques.some(
|
|
@@ -2023,6 +2025,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
this.$set(this.questionList[bindex].ques, ansIndex, arr);
|
|
|
+ this.$u.toast('已确认答案')
|
|
|
this.isDoOver();
|
|
|
},
|
|
|
|