Kaynağa Gözat

feat: 问题卷列表字段调整

chenhao 2 yıl önce
ebeveyn
işleme
2bc4b01440

+ 3 - 3
src/api/api-types/marking.d.ts

@@ -141,7 +141,7 @@ export namespace Marking {
   }
 
   interface ProblemListItem {
-    createTime: string
+    markTime: string
     examNumber: string
     filePath: string
     headerName: number
@@ -151,8 +151,8 @@ export namespace Marking {
     mainNumber: number
     mainName: string
     markerName: string
-    markerRatio: string
-    markerScore: number
+    markRatio: string
+    markScore: number
     objectiveScore: number
     problemSolveType: string
     problemType: string

+ 3 - 3
src/modules/marking/problem/index.vue

@@ -207,9 +207,9 @@ const columns: EpTableColumn[] = [
   { label: '提交人', prop: 'markerName', width: 60 },
   { label: '问题类型', prop: 'problemTypeName', width: 45 },
   { label: '客观分', prop: 'objectiveScore', width: 45 },
-  { label: '主观分', prop: 'markerScore', width: 45 },
-  { label: '客主比', prop: 'markerRatio', width: 45 },
-  { label: '评卷时间', prop: 'createTime', width: 45 },
+  { label: '主观分', prop: 'markScore', width: 45 },
+  { label: '客主比', prop: 'markRatio', width: 45 },
+  { label: '评卷时间', prop: 'markTime', width: 45 },
   { label: '处理人', prop: 'headerName', width: 45 },
   { label: '处理时间', prop: 'solveTime', width: 45 },
 ]