|
@@ -138,48 +138,58 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="tw-flex tw-justify-between tw-bg-white tw-p-4">
|
|
|
- <a-tooltip
|
|
|
- v-if="!allViewed && route.path == '/admin/exam/check/student/start'"
|
|
|
- placement="top"
|
|
|
+ <div>
|
|
|
+ <div
|
|
|
+ v-if="route.path == '/admin/exam/check/student/start'"
|
|
|
+ style="padding: 5px 6px; color: red; font-size: 12px"
|
|
|
>
|
|
|
- <template #title>请先浏览完该学生的所有试卷</template>
|
|
|
- <a-button
|
|
|
- :disabled="
|
|
|
+ *请仔细核对每张题卡上的姓名、考生编号、科目信息是否和系统上方的一致
|
|
|
+ </div>
|
|
|
+ <div class="tw-flex tw-justify-between tw-bg-white tw-p-4">
|
|
|
+ <a-tooltip
|
|
|
+ v-if="
|
|
|
!allViewed && route.path == '/admin/exam/check/student/start'
|
|
|
"
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <template #title>请先浏览完该学生的所有试卷</template>
|
|
|
+ <a-button
|
|
|
+ :disabled="
|
|
|
+ !allViewed && route.path == '/admin/exam/check/student/start'
|
|
|
+ "
|
|
|
+ type="primary"
|
|
|
+ shape="round"
|
|
|
+ @click="saveStudentAnswer"
|
|
|
+ >
|
|
|
+ 保存
|
|
|
+ </a-button>
|
|
|
+ </a-tooltip>
|
|
|
+ <a-button
|
|
|
+ v-else
|
|
|
+ :disabled="!student?.upload"
|
|
|
type="primary"
|
|
|
shape="round"
|
|
|
@click="saveStudentAnswer"
|
|
|
>
|
|
|
保存
|
|
|
</a-button>
|
|
|
- </a-tooltip>
|
|
|
- <a-button
|
|
|
- v-else
|
|
|
- :disabled="!student?.upload"
|
|
|
- type="primary"
|
|
|
- shape="round"
|
|
|
- @click="saveStudentAnswer"
|
|
|
- >
|
|
|
- 保存
|
|
|
- </a-button>
|
|
|
- <div>
|
|
|
- <a-button
|
|
|
- shape="round"
|
|
|
- :disabled="currentIndex <= 1"
|
|
|
- class="tw-mr-4"
|
|
|
- @click="getPreviousStudent"
|
|
|
- >
|
|
|
- 上一份
|
|
|
- </a-button>
|
|
|
- <a-button
|
|
|
- shape="round"
|
|
|
- :disabled="currentIndex === allIds.length"
|
|
|
- @click="getNextStudent"
|
|
|
- >
|
|
|
- 下一份
|
|
|
- </a-button>
|
|
|
+ <div>
|
|
|
+ <a-button
|
|
|
+ shape="round"
|
|
|
+ :disabled="currentIndex <= 1"
|
|
|
+ class="tw-mr-4"
|
|
|
+ @click="getPreviousStudent"
|
|
|
+ >
|
|
|
+ 上一份
|
|
|
+ </a-button>
|
|
|
+ <a-button
|
|
|
+ shape="round"
|
|
|
+ :disabled="currentIndex === allIds.length"
|
|
|
+ @click="getNextStudent"
|
|
|
+ >
|
|
|
+ 下一份
|
|
|
+ </a-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|