刘洋 8 月之前
父节点
当前提交
1a6d3346d4
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/render/views/ScanManage/ScanCheckMiss.vue

+ 4 - 4
src/render/views/ScanManage/ScanCheckMiss.vue

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