diff --git a/pages/active/newcomer-exclusive/newcomer-exclusive.vue b/pages/active/newcomer-exclusive/newcomer-exclusive.vue index 4bdfccd..59e3c46 100644 --- a/pages/active/newcomer-exclusive/newcomer-exclusive.vue +++ b/pages/active/newcomer-exclusive/newcomer-exclusive.vue @@ -140,7 +140,7 @@ export default { searchList(params).then((res) => { let curPageLen = res.data ? res.data.length : 0; if (res.data) { - this.dataList = this.dataList.concat(res.data); + this.dataList = page.num === 1 ? res.data : this.dataList.concat(res.data); } console.log(this.dataList); @@ -352,4 +352,4 @@ export default { } } } - + \ No newline at end of file