Compare commits
No commits in common. "421673afcbb03011810804eb6eb1698e979f75f6" and "64e4d87f6d1c2ea2f5155ed01775534faf2241a0" have entirely different histories.
421673afcb
...
64e4d87f6d
|
|
@ -308,15 +308,15 @@ export default {
|
|||
|
||||
const res = await arc.getAzFrameworkList(this.queryParams)
|
||||
|
||||
if (res.code === 200 && res.rows) {
|
||||
const newData = res.rows || []
|
||||
if (res.code === 200 && res.data) {
|
||||
const newData = res.data.rows || []
|
||||
|
||||
if (this.currentPage === 1) {
|
||||
this.pointList = newData
|
||||
} else {
|
||||
this.pointList = [...this.pointList, ...newData]
|
||||
}
|
||||
this.total = res.total || 0
|
||||
this.total = res.data.total || 0
|
||||
|
||||
// 优化hasMore判断逻辑
|
||||
this.hasMore =
|
||||
|
|
|
|||
Loading…
Reference in New Issue