From 319080c3fcf38097717f483892ec8993882b3131 Mon Sep 17 00:00:00 2001
From: chen.lin <1442464845@qq.com>
Date: 星期五, 06 三月 2026 08:16:46 +0800
Subject: [PATCH] 拣货过程中的出库库存匹配

---
 pages/check/firstCheck.vue |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/pages/check/firstCheck.vue b/pages/check/firstCheck.vue
index 1c66536..532600a 100644
--- a/pages/check/firstCheck.vue
+++ b/pages/check/firstCheck.vue
@@ -2,8 +2,8 @@
 	<view class="has-foot">
 		<form>			
 			<view class="cu-form-group" v-show="!isconfirm">
-				<view class="title">瀹瑰櫒鍙�</view>
-				<input placeholder="璇锋壂鎻忓鍣ㄥ彿" v-model="barcode" focus></input>
+				<view class="title">鏂欑鐮�</view>
+				<input placeholder="璇锋壂鎻忔枡绠辩爜" v-model="barcode" focus></input>
 				<text class='cuIcon-close text-gray margin-right-xs' v-show="barcode!==''" @click="clearCode"></text>
 				<text class='cuIcon-search text-blue' @click="search"></text>
 			</view>
@@ -46,7 +46,7 @@
 					</view>
 					<view class="cu-item" v-if="check.checkType === 0">
 						<view class="content">
-							<text class="text-gray">鏂欑搴撳瓨鏁�:<text class="text-black ">{{item.anfme}}</text></text>
+							<text class="text-gray">鏂欑搴撳瓨鏁�:<text class="text-black ">{{ $formatQty(item.anfme) }}</text></text>
 						</view>
 					</view>
 					<view class="cu-item">
@@ -55,7 +55,7 @@
 								<view class="title text-blue"><text class="text-red text-xl vertical-middle"></text>瀹炵洏鏁�:
 								</view>
 								<uni-number-box style="width: 70%;" :max="max" v-model="item.checkQty"
-									:step='0.000001'></uni-number-box>
+									:step="1" :decimal="2"></uni-number-box>
 							</view>
 						</view>
 					</view>
@@ -105,7 +105,7 @@
 					</view>
 					<view class="cu-item" v-if="check.checkType === 0">
 						<view class="content">
-							<text class="text-gray">搴撳瓨鏁�:<text class="text-black ">{{item.anfme}}</text></text>
+							<text class="text-gray">搴撳瓨鏁�:<text class="text-black ">{{ $formatQty(item.anfme) }}</text></text>
 						</view>
 					</view>
 					<view class="cu-item">
@@ -122,7 +122,7 @@
 								<view class="title text-blue"><text class="text-red text-xl vertical-middle"></text>瀹炵洏鏁�:
 								</view>
 								<uni-number-box style="width: 70%;" :max="max" v-model="item.checkQty"
-									:step='0.000001'></uni-number-box>
+									:step="1" :decimal="2"></uni-number-box>
 							</view>
 						</view>
 					</view>
@@ -312,7 +312,7 @@
 				let that = this
 				if (that.barcode === '' || that.barcode === null) {
 					uni.showToast({
-						title: "瀹瑰櫒鍙蜂负绌�",
+						title: "鏂欑鐮佷负绌�",
 						icon: "error",
 					})
 					return;

--
Gitblit v1.9.1