Просмотр исходного кода

修改申请部分退款逻辑

pangqijun 1 год назад
Родитель
Сommit
b113bdb46e
1 измененных файлов с 15 добавлено и 5 удалено
  1. 15 5
      pages/order/index.vue

+ 15 - 5
pages/order/index.vue

@@ -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 => {
+        uni.hideLoading();
 				return that.$util.Tips({
 					title: err
 				});