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);