瀏覽代碼

选中sku弹框关闭

DELL 3 年之前
父節點
當前提交
194f1511d7
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/packagePrize/prize/index.vue

+ 3 - 3
src/packagePrize/prize/index.vue

@@ -321,12 +321,13 @@
 			
 			close() {
 				this.skuPopupShow = false
+				this.tipShow = false
 			},
 			skuSuccess(data) {
 				this.tipData = data
 				this.close()
 				this.tipShow = true
-				this.getList()
+				// this.pageList()
 			},
 			
 			tipSecction() {
@@ -335,14 +336,13 @@
 				});
 				$http.post('/api/v1/mp/user/mine/prize/saveSku', this.tipData).then(res => {
 					uni.hideLoading();
-					flag = false
 					if (res.code == 0) {
+						this.close()
 						this.pageList()
 					} else if (res.code == 1021) {
 						uni.$u.toast(res.msg);
 					}
 				}).catch(() => {
-					flag = false
 					uni.hideLoading();
 				})
 			},