获取售后中订单列表问题修复

This commit is contained in:
donqi 2022-10-06 03:23:55 +08:00
parent ed06392a80
commit eef33e9e7e
2 changed files with 5 additions and 3 deletions

View File

@ -583,11 +583,11 @@ export default {
})
return res[1].data;
},
async getAfterList() {
async getAfterList(params = {}) {
let res = await uni.request({
url: '/order/master/after/list',
method: 'POST',
data: {}
data: params
})
return res[1].data;
},

View File

@ -187,7 +187,9 @@
}
let res = null;
if (this.tabCur === 6) {
res = await this.$request.getAfterList();
res = await this.$request.getAfterList({
customerId: params.customerId
});
} else {
res = await this.$request.qryOrderPage(params);
}