tree宽度修改

This commit is contained in:
仲么了
2024-01-29 15:42:45 +08:00
parent 9351307908
commit cea1f4863f
4 changed files with 26 additions and 19 deletions

View File

@@ -74,7 +74,7 @@ export default class TableStore {
)
).then((res: any) => {
this.table.data = res.data.records || res.data
this.table.total = res.data.total || res.data.length||0
this.table.total = res.data.total || res.data.length || 0
if (this.isWebPaging) {
this.table.webPagingData = window.XEUtils.chunk(this.table.data, this.table.params.pageSize)
this.table.data = this.table.webPagingData[this.table.params.pageNum - 1]