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

This commit is contained in:
fangjf 2026-02-25 17:26:45 +08:00
parent d6fb99abe6
commit 9519c70a51
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ export default {
forceType: '1' forceType: '1'
}).then((data) => { }).then((data) => {
return { return {
tableData: data, tableData: data.records,
total: data.length total: data.total
} }
}) })
}, },