shish hai 1 ano
pai
achega
25c946732a

+ 1 - 1
ghsPad/src/pages/home/cash.vue

@@ -20,7 +20,7 @@
 			</view>
 
 			<view class="open-box">
-				<consoleButton :changeCurrentJobType.sync="currentJobType" :changeCurrentJobId.sync="currentJobId" @clearAll="clearAll" @showCustomPop="showCustomPop"
+				<consoleButton :changeCurrentJobType.sync="currentJobType" :changeCurrentJobId.sync="currentJobId" @clearAll="clearAll" @showCustomPop="showCustomPop" @fastKd="fastKd"
 				:customId.sync="customId" :customName.sync="customName" @changeProperty="changeProperty" @rightItemRefresh="rightItemRefresh"></consoleButton>
 			</view>
 		</view>

+ 5 - 0
ghsPad/src/pages/home/components/cashConsole.vue

@@ -6,6 +6,7 @@
 	<view class="active" style="position:fixed;left:36upx;bottom:13upx;width:84upx;height:50upx;line-height:30upx;font-size:15upx;" @click="handOrder()" v-if="globalHasHand == 0">挂单</view>
 	<view class="active" style="position:fixed;left:36upx;bottom:13upx;width:84upx;height:50upx;line-height:30upx;font-size:15upx;color:white;background-color: #3385FF;" @click="getHandOrder()" v-else>取单</view>
 	<view class="active" @click="showCustomPop" style="background-color:#3385FF;color:white;">选客</view>
+	<view class="active" @click="fastKd" style="font-size:8upx;">快捷开单</view>
     <view class="active" @click="clearItemFn">清空</view>
 
 	<view v-if="Number(customId)>0" style="position:fixed;left:32upx;bottom:66upx;width:189upx;height:20upx;line-height:5upx;font-size:13upx;background-color:white;color:#3385FF;font-weight:bold;border:none;">{{customName}}</view>
@@ -122,6 +123,10 @@ export default {
 			this.$util.hitVoice()
 			this.$emit('showCustomPop')
 		},
+		fastKd(){
+			this.$util.hitVoice()
+			this.$emit('fastKd')
+		},
 		cancelSelectPrice(){
 			this.$refs.gatheringRef.close()
 		},