guo 3 anni fa
parent
commit
d7eb4ebc7a

+ 1 - 1
common/common.js

@@ -28,7 +28,7 @@ function noMultipleClicks(methods, info) {
         }
         setTimeout(()=> {
             that.noClick= true;
-        }, 2000)
+        }, 3000)
     } else {
         //  这里是重复点击的判断
     }

+ 5 - 5
pages/changeStore/changeStoreDetail.vue

@@ -138,7 +138,7 @@
 		<!-- 底部按钮 操作 -->
 		<view style="height: 150rpx;"></view>
 		<view class="orderBottom" v-if="state==1">
-			<view class="cancelBtn" @click="cancelBtn">撤销申请</view>
+			<view class="cancelBtn" @click="$noMultipleClicks(cancelBtn)">撤销申请</view>
 			<view class="cancelBtn" @click="editBtn">修改申请</view>
 		</view>
 
@@ -153,7 +153,8 @@
 				tongguoUrl: '../../static/img/icon_tongguo.png',
 				waitUrl: '../../static/img/icon_yuan.png',
 				id: '',
-				detailData: '',
+				detailData: '',
+				 noClick:true,
 			}
 		},
 		onLoad(opt) {
@@ -238,14 +239,13 @@
 						uni.hideLoading();
 						
 						if(res.code==0){
+							that.getData()
 							uni.showToast({
 								title: '撤销成功',
 								icon: 'none',
 								duration: 2000,
 							});
-							setTimeout(function() {
-								that.getData()
-							}, 2000); 	
+							
 						}
 						
 					})

+ 4 - 2
pages/refundMoney/refundMoney.vue

@@ -80,6 +80,7 @@
 		},
 		methods: {
 			submit() {
+				console.log(this.money);
 				if (!this.reasonId) {
 					uni.showToast({
 						title: '请选择退款原因',
@@ -88,9 +89,10 @@
 					});
 					return ;
 				}
-				if (!this.money) {
+				
+				if (this.money <= 0) {
 					uni.showToast({
-						title: '请输入退款金额',
+						title: '请输入大于0的金额',
 						icon: 'none',
 						duration: 2000,
 					});

+ 6 - 5
pages/refundMoney/refundMoneyDetail.vue

@@ -120,7 +120,7 @@
 		<!-- 底部按钮 操作 -->
 		<view style="height: 150rpx;"></view>
 		<view class="orderBottom" v-if="state==1">
-			<view class="cancelBtn" @click="cancelBtn">撤销申请</view>
+			<view class="cancelBtn" @click="$noMultipleClicks(cancelBtn)">撤销申请</view>
 			<view class="cancelBtn" @click="editBtn">修改申请</view>
 		</view>
 
@@ -135,7 +135,8 @@
 				tongguoUrl: '../../static/img/icon_tongguo.png',
 				waitUrl: '../../static/img/icon_yuan.png',
 				id: '',
-				detailData: '',
+				detailData: '',
+				 noClick:true,
 			}
 		},
 		onLoad(opt) {
@@ -221,14 +222,14 @@
 						uni.hideLoading();
 						
 						if(res.code==0){
+							that.getData()
+							
 							uni.showToast({
 								title: '撤销成功',
 								icon: 'none',
 								duration: 2000,
 							});
-							setTimeout(function() {
-								that.getData()
-							}, 2000); 	
+							
 						}
 						
 					})