查询拟强制注销业务改为分页查询

This commit is contained in:
fangjf 2026-02-25 17:11:35 +08:00
parent bc34957968
commit d6fb99abe6
2 changed files with 14 additions and 10 deletions

View File

@ -618,14 +618,16 @@ export default {
})
}),
xrForceDeregisterSpeListByBizSeqNo({
size: 10,
current: 1,
bizSeqNo: this.$route.query.bizSeqNo,
forceType: '0'
}).then((busInfo) => {
const busName = this.data.busName
this.data.status = busInfo[0].status
this.data.status = busInfo.records[0].status
this.data = {
...this.data,
...busInfo[0]
...busInfo.records[0]
}
if (busName) {
this.data.busName = busName
@ -633,7 +635,7 @@ export default {
const permission = ({
'0': 'xrExamine',
'1': 'xrApprove'
})[busInfo[0].status]
})[busInfo.records[0].status]
const ps = []
if (permission) {
ps.push(getUsersWithPermission(
@ -740,7 +742,7 @@ export default {
forceType: '0'
}).then((data) => {
return {
tableData: data,
tableData: data.records,
total: data.total
}
})

View File

@ -619,23 +619,25 @@ export default {
})
}),
xrForceDeregisterSpeListByBizSeqNo({
size: 10,
current: 1,
bizSeqNo: this.$route.query.bizSeqNo,
forceType: '1'
}).then((busInfo) => {
const busName = this.data.busName
this.data.status = busInfo[0].status
this.data.status = busInfo.records[0].status
this.data = {
...this.data,
...busInfo[0]
...busInfo.records[0]
}
if (busName) {
this.data.busName = busName
}
this.userIsRegOrg = busInfo[0].userIsRegOrg
this.userIsRegOrg = busInfo.records[0].userIsRegOrg
const permission = ({
'0': 'xrExamine',
'1': 'xrApprove'
})[busInfo[0].status]
})[busInfo.records[0].status]
const ps = []
if (permission) {
ps.push(getUsersWithPermission(
@ -767,8 +769,8 @@ export default {
forceType: '1'
}).then((data) => {
return {
tableData: data,
total: data.length
tableData: data.records,
total: data.total
}
})
},