From da25a3750e6d5bb2cdab7b43d0988a634c52eff3 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 14 Jun 2023 16:36:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=85=E5=AE=B9=E5=88=97=E8=A1=A8=E5=88=86?= =?UTF-8?q?=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mods/publicity/AppContent/AppContent.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mods/publicity/AppContent/AppContent.vue b/src/mods/publicity/AppContent/AppContent.vue index 30f3267..1305199 100644 --- a/src/mods/publicity/AppContent/AppContent.vue +++ b/src/mods/publicity/AppContent/AppContent.vue @@ -58,7 +58,8 @@ export default { categorys: [], categoryList: [], pageShow: false, - search: {} + search: {}, + current: 1 } }, onLoad(option) { @@ -103,7 +104,7 @@ export default { }, getCategoryList() { this.$instance.post("/app/appcontentinfo/list", null, { - params: {...this.search, size: 10} + params: {...this.search, size: 10, current: this.current} }).then(res => { if (res?.data) { this.categoryList = this.current > 1 ? [...this.categoryList, ...res.data.records] : res.data.records;