分销者列表查询修改
This commit is contained in:
parent
ae9f26afab
commit
7d1cf9b39c
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue