刘洋 há 8 meses atrás
pai
commit
1a6d3346d4
1 ficheiros alterados com 4 adições e 4 exclusões
  1. 4 4
      src/render/views/ScanManage/ScanCheckMiss.vue

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

@@ -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);