|
@@ -28,6 +28,9 @@ const columns: EpTableColumn<ExtractArrayValue<ExtractApiResponse<'getStatistics
|
|
|
label: '小组',
|
|
|
prop: 'markingGroupNumber',
|
|
|
width: usePX(52),
|
|
|
+ formatter(row) {
|
|
|
+ return row.markingGroupNumber === 0 ? '全体' : `${row.markingGroupNumber}`
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
label: '评卷员',
|
|
@@ -35,7 +38,7 @@ const columns: EpTableColumn<ExtractArrayValue<ExtractApiResponse<'getStatistics
|
|
|
minWidth: usePX(84),
|
|
|
slotName: 'marker',
|
|
|
formatter(row) {
|
|
|
- return `第${row.markingGroupNumber + 1}组`
|
|
|
+ return row.markingGroupNumber === 0 ? '全体' : `第${row.markingGroupNumber}组`
|
|
|
},
|
|
|
},
|
|
|
{ align: 'center', label: '评卷份数', prop: 'markingPaperCount', width: usePX(72) },
|