Merge branch 'develop' of https://gitee.com/siwa-team/dawa-vue into develop

This commit is contained in:
Yjhon 2022-02-23 11:53:13 +08:00
commit e8cba8fceb
1 changed files with 3 additions and 3 deletions

View File

@ -38,9 +38,9 @@
<a disabled>预约考试</a> <a disabled>预约考试</a>
</template> </template>
<template v-else> <template v-else>
<a v-if="record.subscribeStatus == 0 && record.sAttend == 0" @click="handlerMarker(record)">预约考试</a> <a v-if="record.examCondition === 2" @click="handlerMarker(record)">预约考试</a>
<a v-if="record.isAttend == 1 || record.examState == 3" @click="handlerGoReport(record)">查看详情</a> <a v-if="record.examCondition === 1" @click="handlerGoReport(record)">查看详情</a>
<a v-if="record.subscribeStatus == 1 && record.isAttendStatus == 1" @click="handlerGoExam(record)">进入考试</a> <a v-if="record.examCondition === 3" @click="handlerGoExam(record)">进入考试</a>
</template> </template>
</span> </span>
</s-table> </s-table>