From 2c81816264faf579143f8b17582248ce15f369ce Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期日, 09 三月 2025 13:48:35 +0800
Subject: [PATCH] 出库单添加正在作业中数量
---
pages/phyz/processOrder/orderCheck2.vue | 31 +++++++++++++++++++++++--------
1 files changed, 23 insertions(+), 8 deletions(-)
diff --git a/pages/phyz/processOrder/orderCheck2.vue b/pages/phyz/processOrder/orderCheck2.vue
index ffe43a2..876c88e 100644
--- a/pages/phyz/processOrder/orderCheck2.vue
+++ b/pages/phyz/processOrder/orderCheck2.vue
@@ -18,13 +18,16 @@
</view>
</view>
- <view class="detl-threeCode" style="display: flex;padding: 0 0 32rpx 0;font-size: 24px;">鍑哄簱绔欙細
- <view class="dropdown" @click="toggleDropdown(data)">
- <input type="text" style="width: 270rpx;font-size: 20px;" v-model="data.agvStaNo" placeholder="璇烽�夋嫨鍑哄簱绔�" placeholder-style="color: #fff">
- <uni-icons :type="data.isOpen ? 'top' : 'bottom'" color="#fff" style="margin-left: 10rpx;"></uni-icons>
- <scroll-view scroll-y="ture" class="dropdown-content" v-if="data.isOpen">
- <view class="dropdown-item" v-for="option in data.agvStaNos" @click="selected(option,data)">{{option}}</view>
- </scroll-view>
+ <view class="detl-threeCode" style="display: flex;padding: 0 0 32rpx 0;font-size: 20px;">鍑哄簱绔欙細
+ <!-- @click="toggleDropdown(item)" -->
+ <view class="dropdown" >
+ <!-- <view style="height: 100%;width: 100%; position: fixed;background-color: rgba(0,0,0,.4);left:0;top:0" v-if = "item.isOpen"></view> -->
+ <input @input="staInput(item.agvStaNo,item.agvStaNos,index)" type="text" style="width: 270rpx;font-size: 16px;" v-model="item.agvStaNo" placeholder="璇烽�夋嫨鍑哄簱绔�" placeholder-style="color: #fff">
+ <view style="font-size: 10px;">鍙敮鎸佹壂鐮�</view>
+ <!-- <uni-icons :type="item.isOpen ? 'top' : 'bottom'" color="#fff" style="margin-left: 10rpx;"></uni-icons> -->
+ <!-- <scroll-view scroll-y="ture" class="dropdown-content" v-if="item.isOpen">
+ <view class="dropdown-item" v-for="option in options" @click="selected(option,item)">{{option}}</view>
+ </scroll-view> -->
</view>
</view>
</view>
@@ -37,7 +40,7 @@
<view class="title">鍑哄簱鏁伴噺</view>
<view class="popup-item">
<view>
- <uni-number-box :value="data.anfme" :step='1' :min="0" :max="count" color="#747474" @change="changeValue" />
+ <uni-number-box :value="data.anfme" :step='0.01' :min="0" :max="count" color="#747474" @change="changeValue" />
</view>
</view>
@@ -90,6 +93,18 @@
max() {
this.data.anfme = this.count
},
+ staInput(item,items,index) {
+ var flag = false
+ for (let k of items) {
+ if (k == item) flag = true
+ }
+ if(!flag) {
+ uni.showToast({ title: '褰撳墠绔欑偣鏃犳硶浣跨敤锛屽凡澶嶄綅', icon: "error", position: 'top' })
+ setTimeout(() => {
+ this.dataList[index].agvStaNo = ''
+ }, 100);
+ }
+ },
toggleDropdown(item) {
item.isOpen = !item.isOpen;
},
--
Gitblit v1.9.1