|
|
@@ -26,13 +26,13 @@
|
|
|
{{ record.examName }}
|
|
|
</template>
|
|
|
<template v-if="column.key === 'examType'">
|
|
|
- {{ examTypeName(record.examType) }}
|
|
|
+ {{ examTypeName(record.examType)||'--' }}
|
|
|
</template>
|
|
|
<template v-if="column.key === 'startTime'">
|
|
|
- {{ formatDateTime(record.startTime) }}
|
|
|
+ {{ formatDateTime(record.startTime)||'--' }}
|
|
|
</template>
|
|
|
<template v-if="column.key === 'endTime'">
|
|
|
- {{ formatDateTime(record.endTime) }}
|
|
|
+ {{ formatDateTime(record.endTime)||'--' }}
|
|
|
</template>
|
|
|
<template v-if="column.key === 'status'">
|
|
|
<a-tag :color="statusTagFormatter(record.status)" size="small">
|
|
|
@@ -64,7 +64,7 @@
|
|
|
{{ paperTypeEnum(record.paperType) }}
|
|
|
</template>
|
|
|
<template v-if="column.key === 'subjectId'">
|
|
|
- {{ subjectName(record.subjectId) }}
|
|
|
+ {{ subjectName(record.subjectId)|| '--' }}
|
|
|
</template>
|
|
|
<template v-if="column.key === 'action'">
|
|
|
<router-link :to="{ path: '/student/do', query: { id: record.id } }" target="_blank">
|