|
@@ -62,9 +62,11 @@
|
|
small
|
|
small
|
|
></el-pagination>
|
|
></el-pagination>
|
|
</div>
|
|
</div>
|
|
- <div class="flex-1 scroll-auto">
|
|
|
|
|
|
+ <div class="flex-1 scroll-auto m-t-mini">
|
|
<base-table
|
|
<base-table
|
|
ref="tableRef"
|
|
ref="tableRef"
|
|
|
|
+ border
|
|
|
|
+ stripe
|
|
size="small"
|
|
size="small"
|
|
v-bind="pagination"
|
|
v-bind="pagination"
|
|
height="100%"
|
|
height="100%"
|
|
@@ -178,12 +180,12 @@ const onOperationClick: OperationClick = ({ type, value }) => {
|
|
}
|
|
}
|
|
|
|
|
|
const columns: EpTableColumn<RowType>[] = [
|
|
const columns: EpTableColumn<RowType>[] = [
|
|
- { label: '评卷员', prop: 'markerName' },
|
|
|
|
- { label: '密号', prop: 'secretNumber' },
|
|
|
|
|
|
+ { label: '评卷员', prop: 'markerName', width: 90 },
|
|
|
|
+ { label: '密号', prop: 'secretNumber', width: 100 },
|
|
{ label: '给分', prop: 'markerScore' },
|
|
{ label: '给分', prop: 'markerScore' },
|
|
{ label: '客观分', prop: 'objectiveScore' },
|
|
{ label: '客观分', prop: 'objectiveScore' },
|
|
{ label: '客主比', prop: 'markerRatio' },
|
|
{ label: '客主比', prop: 'markerRatio' },
|
|
- { label: '评卷时间', prop: 'markTime' },
|
|
|
|
|
|
+ { label: '评卷时间', prop: 'markTime', width: 150 },
|
|
]
|
|
]
|
|
|
|
|
|
const { pagination, currentPage, data, fetchTable } = useTable('getPersonalMarkDetail', {
|
|
const { pagination, currentPage, data, fetchTable } = useTable('getPersonalMarkDetail', {
|