|
@@ -343,14 +343,24 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
applyGrouponAfterRefund(item) {
|
|
applyGrouponAfterRefund(item) {
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: '加载中...'
|
|
|
|
+ });
|
|
let that = this;
|
|
let that = this;
|
|
applyGrouponAfterRefund(item.orderId).then(res => {
|
|
applyGrouponAfterRefund(item.orderId).then(res => {
|
|
- that.getOrderList()
|
|
|
|
- return that.$util.Tips({
|
|
|
|
- title: res.msg,
|
|
|
|
- icon: 'success'
|
|
|
|
- });
|
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ uni.hideLoading();
|
|
|
|
+ that.page = 1;
|
|
|
|
+ that.orderList = [];
|
|
|
|
+ that.getOrderList()
|
|
|
|
+ return that.$util.Tips({
|
|
|
|
+ title: res.msg,
|
|
|
|
+ icon: 'success'
|
|
|
|
+ });
|
|
|
|
+ }, 1000)
|
|
|
|
+
|
|
}).catch(err => {
|
|
}).catch(err => {
|
|
|
|
+ uni.hideLoading();
|
|
return that.$util.Tips({
|
|
return that.$util.Tips({
|
|
title: err
|
|
title: err
|
|
});
|
|
});
|