This commit is contained in:
sjl
2026-02-06 10:10:24 +08:00
parent 59489aaafa
commit 15e3d4aec8
12 changed files with 555 additions and 29 deletions

View File

@@ -169,6 +169,14 @@ const tableStore = new TableStore({
beforeSearchFun: () => {
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
},
exportProcessingData: () => {
tableStore.table.allData = tableStore.table.allData.filter(item => {
item.userStatus =
item.userStatus == 0 ? '可研' : item.userStatus == 1 ? '建设' : item.userStatus == 2 ? '运行' : '退运'
return item
})
}
})
tableStore.table.params.city = ''