From 76ef387d5f29e72cb07910b428230a8d03181163 Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Tue, 11 Jul 2023 09:59:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/sup/userPerson.js | 2 +- src/views/userManage/customerManage.vue | 1 + src/views/userManage/customerUser.vue | 4 +++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/api/sup/userPerson.js b/src/api/sup/userPerson.js index d68f638..f1ca13f 100644 --- a/src/api/sup/userPerson.js +++ b/src/api/sup/userPerson.js @@ -3,7 +3,7 @@ export function filterList(param) { return request({ url: "/sup/company/person/filterList", method: "get", - data :param + params :param }); } diff --git a/src/views/userManage/customerManage.vue b/src/views/userManage/customerManage.vue index 619a2e3..0dc02ca 100644 --- a/src/views/userManage/customerManage.vue +++ b/src/views/userManage/customerManage.vue @@ -608,6 +608,7 @@ export default { customerkDialog(row) { this.currentCustomer = row.id; + this.customerVisible = true; }, diff --git a/src/views/userManage/customerUser.vue b/src/views/userManage/customerUser.vue index 797e68e..8736940 100644 --- a/src/views/userManage/customerUser.vue +++ b/src/views/userManage/customerUser.vue @@ -342,6 +342,7 @@ export default { }, getList() { this.loading = true; + console.log(this.query); filterList(this.query) .then((response) => { this.loading = false; @@ -442,7 +443,8 @@ export default { created() { this.query.companyId = this.currentCustomer; - this.getList(); + this.getList(); + }, };