From 392ba406bc71001c8b90c7394318fccc91df3169 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Thu, 30 Jun 2022 11:41:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=9A=E5=91=98=E7=A7=AF=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/sanjianxi/apps/AppPartyMemberScore/psList.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/project/sanjianxi/apps/AppPartyMemberScore/psList.vue b/project/sanjianxi/apps/AppPartyMemberScore/psList.vue index 80d9f006..5821f4f0 100644 --- a/project/sanjianxi/apps/AppPartyMemberScore/psList.vue +++ b/project/sanjianxi/apps/AppPartyMemberScore/psList.vue @@ -22,9 +22,9 @@ start-placeholder="开始日期" end-placeholder="结束日期" value-format="yyyy-MM-dd HH:mm:ss" format="yyyy-MM-dd"> @@ -69,6 +69,7 @@ export default { search: { startTime: '', endTime: '', + name: '', }, page: {current: 1, size: 10, total: 0}, tableData: [], @@ -91,7 +92,7 @@ export default { }, getTableData() { this.instance.post("/app/apppartyintegralinfo/listByOrg", null, { - params: {...this.page, ...this.search, partyOrgId: this.partyOrgId } // partyOrgId: + params: {...this.page, ...this.search, partyOrgId: this.partyOrgId } }).then(res => { if (res?.data) { this.tableData = res.data?.records @@ -117,8 +118,8 @@ export default { }, onTreeChange(e) { - console.log(e); this.partyOrgId = e.id + this.$nextTick(() => { this.getTableData() })