|
@@ -101,7 +101,13 @@ const columns = computed<EpTableColumn<ExtractArrayValue<ExtractApiResponse<'get
|
|
|
return `${row.markScore === null ? '' : row.markScore}${props.showLevel ? `(${row.scoreLevel})` : ''}`
|
|
|
},
|
|
|
},
|
|
|
- { label: '类型', prop: 'historyType' },
|
|
|
+ {
|
|
|
+ label: '类型',
|
|
|
+ prop: 'historyType',
|
|
|
+ formatter(row) {
|
|
|
+ return `${row.historyType}${row.markScore === null ? '-问题卷' : ''}`
|
|
|
+ },
|
|
|
+ },
|
|
|
{ label: '路径', prop: 'source' },
|
|
|
{ label: '评卷时间', prop: 'markTime', width: 130 },
|
|
|
]
|