From 7d1cf9b39c107aeb3d2d8a5c443bb7c412df3b4c Mon Sep 17 00:00:00 2001 From: donqi Date: Wed, 16 Nov 2022 02:04:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E9=94=80=E8=80=85=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/my/my-operator.vue | 3 ++- pages/my/my-team-member.vue | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pages/my/my-operator.vue b/pages/my/my-operator.vue index 155f5ba..853fcc7 100644 --- a/pages/my/my-operator.vue +++ b/pages/my/my-operator.vue @@ -143,7 +143,8 @@ this.curUserInfo = this.$request.getCurUserInfo(); // this.myOperator = await this.$api.data('myOperator'); this.loadMyInfo({ - customerId: this.curUserInfo.customerId + customerId: this.curUserInfo.customerId, + isDistributor: true }); }, async loadMyInfo(params) { diff --git a/pages/my/my-team-member.vue b/pages/my/my-team-member.vue index d0be502..0315709 100644 --- a/pages/my/my-team-member.vue +++ b/pages/my/my-team-member.vue @@ -94,7 +94,9 @@ async loadMyOperaMembers(params = {}) { params.pageNum = this.pageNum; params.pageSize = this.pageSize; - params.customerPlace = this.curUserInfo.customerId; + params.customerPlace = this.curUserInfo.customerId; + params.isDistributor = true; + params.status = 0; this.$refs.loadStatusBar.showLoading(); try { let res = await this.$request.qryCustomerList(params);