Browse Source

主观题查询分数显示问题

chenhao 2 years ago
parent
commit
bd37ee5288

+ 1 - 1
src/api/api-types/statistics.d.ts

@@ -116,7 +116,7 @@ export namespace Statistics {
     headerScore: number
     mainName: string
     mainNumber: number
-    markerScore: number
+    markScore: number
     secretNumber: number
     status: string
     taskId: number

+ 1 - 1
src/modules/quality/subjective-check/index.vue

@@ -234,7 +234,7 @@ const columns: EpTableColumn<RowType>[] = [
 const subColumns: EpTableColumn<RowType>[] = [
   { label: '密号', prop: 'secretNumber' },
   { label: '大题名称', prop: 'mainName' },
-  { label: '当前成绩', prop: 'markerScore' },
+  { label: '当前成绩', prop: 'markScore' },
   { label: '修改成绩', prop: 'headerScore' },
 ]