@@ -343,14 +343,24 @@ export default {
},
applyGrouponAfterRefund(item) {
+ uni.showLoading({
+ title: '加载中...'
+ });
let that = this;
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 => {
return that.$util.Tips({
title: err
});