From 3a770819f22efdc0ecb0ba57de0ac64f08421c55 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期四, 13 十一月 2025 16:54:20 +0800
Subject: [PATCH] 波次拣货功能优化
---
pages/check/checkOrderItem.vue | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/pages/check/checkOrderItem.vue b/pages/check/checkOrderItem.vue
index 4398c7e..2bf5632 100644
--- a/pages/check/checkOrderItem.vue
+++ b/pages/check/checkOrderItem.vue
@@ -3,7 +3,7 @@
<form>
<view class="cu-form-group" v-show="!isconfirm">
<view class="title">鐩樼偣鍗曞彿锛�<text class="text-black ">{{check.orderCode}}</text></view>
- <text class='cuIcon-add text-blue' @click="returnPage"></text>
+ <!-- <text class='cuIcon-add text-blue' @click="returnPage"></text> -->
</view>
<view class="cu-form-group" v-show="!isconfirm">
<view class="title">瀹瑰櫒鍙�</view>
@@ -50,7 +50,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 ">{{item.anfme}}</text></text>
</view>
</view>
<view class="cu-item">
@@ -59,7 +59,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='1'></uni-number-box>
+ :step='0.01'></uni-number-box>
</view>
</view>
</view>
@@ -74,7 +74,7 @@
<view class="cu-item" v-if="item.checkQty !== item.anfme && check.checkType === 0">
<view class="content">
<view class="cu-form-group padding-lr-0">
- <view class=" text-blue">宸紓鍘熷洜</view>
+ <view class=" text-blue">宸紓鍘熷洜:</view>
<view style="width: 80%;">
<uni-data-select style="min-width: 90%; max-width: 90%;" v-model="item.reason"
:localdata="reasons" placement="top"></uni-data-select>
@@ -126,7 +126,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='1'></uni-number-box>
+ :step='0.01'></uni-number-box>
</view>
</view>
</view>
@@ -155,6 +155,7 @@
<view class="cu-bar btn-group foot" v-show="!isconfirm">
<button class="cu-btn text-blue line-blue shadow" @click="clear">娓呯┖</button>
+ <button class="cu-btn bg-orange shadow-blur" @click="returnPage">娣诲姞鏄庣粏</button>
<button class="cu-btn bg-blue shadow-blur" :disabled="repeatClick" @click="complete">鎻愪氦</button>
</view>
@@ -162,7 +163,9 @@
<button class="cu-btn text-blue line-blue shadow" @click="returnPage">杩斿洖</button>
<button class="cu-btn bg-blue shadow-blur" :disabled="repeatClick" @click="sureAdd">纭畾娣诲姞</button>
</view>
-
+
+
+
</view>
@@ -203,12 +206,9 @@
onLoad() {
let that = this
const eventChannel = this.getOpenerEventChannel();
-
eventChannel.on('checkItem', function(data) {
that.check = data.data
-
})
-
},
methods: {
sureAdd(){
--
Gitblit v1.9.1