修改专题库错误

This commit is contained in:
RenCheng 2025-03-09 16:09:23 +08:00
parent 8f35c472b9
commit 5007d6a6e5

View File

@ -176,12 +176,6 @@
this.calculateScrollY(); this.calculateScrollY();
}, },
computed: { computed: {
calculateScrollY() {
//
const container = this.$refs.tableContainer;
const paginationHeight = 64; //
this.tableScrollY = container.clientHeight - paginationHeight;
},
getRowKey(record) { getRowKey(record) {
return `${record.schemaName}_${record.tableName}` return `${record.schemaName}_${record.tableName}`
}, },
@ -218,6 +212,12 @@
}, },
methods: { methods: {
calculateScrollY() {
//
const container = this.$refs.tableContainer;
const paginationHeight = 64; //
this.tableScrollY = container.clientHeight - paginationHeight;
},
handleSelectChange(selectedRowKeys,row) { handleSelectChange(selectedRowKeys,row) {
this.selectedRowKeys = selectedRowKeys this.selectedRowKeys = selectedRowKeys
this.selectedRowData = row this.selectedRowData = row