From 39067e62857649331fe4ce1f59b60f4583e53824 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 12 Apr 2023 09:03:02 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B2=BE=E9=80=89=E5=8A=A8=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/fengdu/AppNewFarmerBank/handpick.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/project/fengdu/AppNewFarmerBank/handpick.vue b/src/project/fengdu/AppNewFarmerBank/handpick.vue index c6f61e2..0a08bc4 100644 --- a/src/project/fengdu/AppNewFarmerBank/handpick.vue +++ b/src/project/fengdu/AppNewFarmerBank/handpick.vue @@ -34,21 +34,23 @@ export default { return { list: [], flag: false, - current: 1 + current: 1, + moduleId: '' } }, methods: { getModule() { this.$instance.post(`/app/appintegraluserapply/queryModuleByName`).then(res => { if (res?.data) { - this.getList(res.data) + this.moduleId = res.data + this.getList() } }) }, - getList(moduleId) { + getList() { this.$instance.post(`/app/appcontentinfo/list-web`, null, { params: { - moduleId: moduleId, + moduleId: this.moduleId, current: this.current, areaId: this.user.areaId, containContent: true,