|
@@ -68,7 +68,7 @@
|
|
|
<Modal v-model="stuReportStatus" :title="$t('learnActivity.score.stuRpt')" :width="1000" footer-hide>
|
|
|
<StuReport :stuData="viewStuData" :examInfo="examInfo" :subject="chooseSubject"></StuReport>
|
|
|
</Modal>
|
|
|
- <Modal v-model="quDataStatus" :title="$t('learnActivity.score.quTitle')" :width="800" footer-hide>
|
|
|
+ <Modal v-model="quDataStatus" :title="$t('learnActivity.score.quTitle')" :width="800" footer-hide @on-visible-change="initIndex">
|
|
|
<!-- 非综合题 -->
|
|
|
<template v-if="paperInfo.item && quNoList[viewQIndex] && vChildIndex == -1">
|
|
|
<div style="display:flex">
|
|
@@ -233,6 +233,13 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ initIndex(status) {
|
|
|
+ if (!status) {
|
|
|
+ this.viewQIndex = 0
|
|
|
+ this.vQuIndex = 0
|
|
|
+ this.vChildIndex = -1
|
|
|
+ }
|
|
|
+ },
|
|
|
//获取各题目正确率数据
|
|
|
getCorrectData(data) {
|
|
|
let d = []
|