fix 81042

This commit is contained in:
danshihao
2024-01-19 15:30:52 +08:00
parent e53ffdbf07
commit 1e0f2ca42a
@@ -40,7 +40,7 @@
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
:pagination="ipagination"
:scroll="{x: '100%'}"
@change="tableOnChange">
@change="handleTableChange">
<!-- 企标号企标名称 -->
<template v-slot:standard="{text, record}">
<a-tooltip overlay-class-name="tooltip-style">
@@ -166,12 +166,6 @@ export default {
standardNumber: record.inspectNo
}
})
},
tableOnChange (pagination, filters, sorter) {
this.orderBy = sorter.order === 'ascend' ? '1' : '2'
this.orderByField = sorter.columnKey
this.ipagination = pagination
this.getTableList()
}
}
}