|
@@ -17,7 +17,7 @@
|
|
|
:pagination="pagination"
|
|
|
>
|
|
|
<template #bodyCell="{ column, record }">
|
|
|
- <template v-if="column.dataIndex === 'scanned'">
|
|
|
+ <template v-if="column.dataIndex === 'scannedText'">
|
|
|
{{ record[column.dataIndex] }}
|
|
|
</template>
|
|
|
<template v-if="column.dataIndex === 'subjectName'">
|
|
@@ -61,7 +61,7 @@ const params = reactive({
|
|
|
examSite: "",
|
|
|
campusCode: "",
|
|
|
examRoom: "",
|
|
|
- scanned: null,
|
|
|
+ scannedText: null,
|
|
|
});
|
|
|
const transParams = computed(() => {
|
|
|
return { ...params, examId: userStore.curExam?.id };
|
|
@@ -136,7 +136,7 @@ const fields = computed(() => {
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- prop: "scanned",
|
|
|
+ prop: "scannedText",
|
|
|
type: "select",
|
|
|
colSpan: 3,
|
|
|
label: "扫描状态",
|
|
@@ -192,7 +192,7 @@ const columns: TableColumnsType = [
|
|
|
},
|
|
|
{
|
|
|
title: "扫描状态",
|
|
|
- dataIndex: "scanned",
|
|
|
+ dataIndex: "scannedText",
|
|
|
},
|
|
|
];
|
|
|
const exportLoading = ref(false);
|