소스 검색

主观题查询分数显示问题

chenhao 2 년 전
부모
커밋
bd37ee5288
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/api/api-types/statistics.d.ts
  2. 1 1
      src/modules/quality/subjective-check/index.vue

+ 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' },
 ]