分销者列表查询修改

This commit is contained in:
donqi 2022-11-16 02:04:59 +08:00
parent ae9f26afab
commit 7d1cf9b39c
2 changed files with 5 additions and 2 deletions

View File

@ -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) {

View File

@ -95,6 +95,8 @@
params.pageNum = this.pageNum;
params.pageSize = this.pageSize;
params.customerPlace = this.curUserInfo.customerId;
params.isDistributor = true;
params.status = 0;
this.$refs.loadStatusBar.showLoading();
try {
let res = await this.$request.qryCustomerList(params);