需求变更整改

This commit is contained in:
guanj
2025-07-15 16:31:06 +08:00
parent 96518a4c9d
commit aa323c0d9c
50 changed files with 582 additions and 263 deletions

View File

@@ -34,6 +34,7 @@ export default class TableStore {
ref: null,
selection: [],
data: [],
copyData: [],
allData: [],
allFlag: false,
webPagingData: [],
@@ -93,6 +94,7 @@ export default class TableStore {
this.table.data = []
this.table.total = 0
}
this.table.copyData = filtration(this.table.data)
if (Array.isArray(res)) {
this.table.data = res
}
@@ -204,7 +206,7 @@ export default class TableStore {
this.table.allData = filtration(res.data.records || res.data)
this.table.allFlag = data.showAllFlag || true
})
},1500)
}, 1500)
}
]
])