|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div v-if="exam && examQuestion()" class="container">
|
|
|
+ <div v-if="exam && examQuestion()" class="container" :key="exam.id">
|
|
|
<div class="header">
|
|
|
<RemainTime></RemainTime>
|
|
|
<OverallProgress :exam-question-list="examQuestionList"></OverallProgress>
|
|
@@ -23,7 +23,7 @@
|
|
|
<p slot="footer">
|
|
|
</p>
|
|
|
</Modal>
|
|
|
- <FaceTracking />
|
|
|
+ <FaceTracking v-if="faceEnable" />
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
正在等待数据返回... <i-button class="qm-primary-button" v-if="timeouted" @click="reloadPage">重试</i-button>
|