shish 6 mesi fa
parent
commit
0cea390167

+ 2 - 2
hdPad/src/pages/home/components/console.vue

@@ -10,7 +10,7 @@
 	<view class="active" @click="showCustomPop()" style="background-color: #09C567;border:1upx sold #09C567;color:white;">选客</view>
 	<view class="active" @click="part()" style="border:1upx solid black;color:black">拆散</view>
 	<view class="active" @click="fastCreate()" style="font-size:9upx;">快捷开单</view>
-	<view class="active" @click="gatheringFn()" style="color:#3385FF;border:1upx solid #3385FF;">快捷收款</view>
+	<view class="active" @click="gatheringFn()" style="color:#3385FF;border:1upx solid #3385FF;font-size:9upx;">快捷收款</view>
     <view class="active" @click="clearItemFn" style="color:#636161;border:1upx solid #636161;">清空</view>
 
 	<view v-if="Number(customId)>0" :class="[fastAction==1 ? 'custom-fast' : 'custom']">{{customName}}</view>
@@ -253,7 +253,7 @@ export default {
 		},
 		//直接收款
 		zjGathering(params){
-			uni.showLoading({mask:true})
+			uni.showLoading()
 			//isCashier=1时收银台播放 总金额139元,请扫码付款
 			//zjGathering 1 表示直接收款,dealPrice 1 表示有改价格也直接提交
 			//senType==1到店自取 getGoods==1自动确认取货

+ 2 - 0
hdPad/src/pages/home/components/selectPrice.vue

@@ -115,6 +115,8 @@ export default {
                 return
             }
             this.$emit('zjGathering', {price:Number(this.price),name:this.name,cash:Number(this.cash)})
+            this.price = 0
+            this.checkType = 1
         }
     }
 }