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

View File

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