@@ -175,6 +175,7 @@ export namespace Marking {
markScore: number
markerName: string
scoreLevel: 'LEVEL_1' | 'LEVEL_2' | 'LEVEL_3' | 'LEVEL_4' | 'LEVEL_5'
+ historyType: string
markTime: string
secretNumber: string
status: string
@@ -79,7 +79,7 @@ const columns = computed<EpTableColumn<ExtractArrayValue<ExtractApiResponse<'get
return `${row.markScore}${props.showLevel ? `(${row.scoreLevel})` : ''}`
},
- { label: '类型' },
+ { label: '类型', prop: 'historyType' },
{ label: '评卷时间', prop: 'markTime' },
]
)