Compare commits

...

2 Commits

Author SHA1 Message Date
woody 421673afcb Merge branch 'dev' of http://47.94.45.65:3000/angelo/web-zk-h5 into test 2025-10-21 09:54:13 +08:00
woody 0215c0c600 feat(resettle2): 分页返回结构变更 2025-10-21 09:53:42 +08:00
1 changed files with 3 additions and 3 deletions

View File

@ -308,15 +308,15 @@ export default {
const res = await arc.getAzFrameworkList(this.queryParams)
if (res.code === 200 && res.data) {
const newData = res.data.rows || []
if (res.code === 200 && res.rows) {
const newData = res.rows || []
if (this.currentPage === 1) {
this.pointList = newData
} else {
this.pointList = [...this.pointList, ...newData]
}
this.total = res.data.total || 0
this.total = res.total || 0
// hasMore
this.hasMore =