fix: BUG修改

This commit is contained in:
kun 2024-05-22 23:13:38 +08:00
parent d2a246f07a
commit 6a931d9f84

View File

@ -20,7 +20,7 @@
<text>{{responseData.courseName}}</text>
</view>
</view>
<button type="primary" class="btn" @click="goHiidden" v-if="pageData.examPaperId">开始考试</button>
<button type="primary" :disabled="isStartExam" class="btn" @click="goHiidden" v-if="pageData.examPaperId">开始考试</button>
</view>
</template>
@ -56,7 +56,7 @@
//
that.videoList[index].isVideoOver = true;
that.videoList[index].controlsBool = true;
let startExamBool = true;
let startExamBool = false;
that.videoList.map(item => {
if(!item.isVideoOver){
startExamBool = false;