This commit is contained in:
gxwebsoft
2023-08-23 18:34:28 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -198,7 +198,7 @@
return d
})
// 合并新数据
app.list = app.list.concat(list)
app.list.push.apply(app.list,list);
if (result.data.count > app.list.length) {
app.canReset = true
} else {

View File

@@ -194,7 +194,7 @@
return d
})
// 合并新数据
app.list = app.list.concat(list)
app.list.push.apply(app.list,list);
if (result.data.count > app.list.length) {
app.canReset = true
} else {