|
@@ -61,7 +61,7 @@
|
|
|
:pagination="{
|
|
|
total: examTableData.totalCount,
|
|
|
pageSize: query.pageSize,
|
|
|
- showTotal:total => `共 ${total} 条`
|
|
|
+ showTotal:(total:any) => `共 ${total} 条`
|
|
|
}"
|
|
|
@change="currentPageChange"
|
|
|
:row-class-name="
|
|
@@ -184,7 +184,13 @@ const columns: TableColumnType[] = [
|
|
|
width: 160,
|
|
|
ellipsis: true,
|
|
|
},
|
|
|
- { title: "科目数量", dataIndex: "paperCount", align: "center", width: 100, ellipsis: true },
|
|
|
+ {
|
|
|
+ title: "科目数量",
|
|
|
+ dataIndex: "paperCount",
|
|
|
+ align: "center",
|
|
|
+ width: 100,
|
|
|
+ ellipsis: true,
|
|
|
+ },
|
|
|
{ title: "操作", dataIndex: "operation", align: "center", width: 100 },
|
|
|
];
|
|
|
|