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;