fixing bug 8.11

This commit is contained in:
2020-08-11 15:38:43 +08:00
parent c01470b52d
commit 37d8ab7a2b
10 changed files with 170 additions and 98 deletions

View File

@@ -43,12 +43,12 @@ export default {
methods: {
getOrderLogistics(id) {
this.$u.api.orderLogistics({ id: id }).then(res => {
this.$u.toast(res.message);
if(res.errCode == 0) {
this.expressInfo = res.data.express_info;
this.list = res.data.express_list;
} else {
this.list = [];
this.$u.toast(res.message);
}
})
}