瀏覽代碼

修改申请部分退款逻辑

pangqijun 1 年之前
父節點
當前提交
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
 				});