From f995772f300ffe07b0b567ed36ddf33edd893c2f Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期一, 15 四月 2024 23:12:40 +0800
Subject: [PATCH] #

---
 pages/phyz/mat/matSelected.vue          |   10 +-
 pages/phyz/checkLocDetl/locDetlList.vue |  150 ++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 149 insertions(+), 11 deletions(-)

diff --git a/pages/phyz/checkLocDetl/locDetlList.vue b/pages/phyz/checkLocDetl/locDetlList.vue
index a1d5d8b..077781a 100644
--- a/pages/phyz/checkLocDetl/locDetlList.vue
+++ b/pages/phyz/checkLocDetl/locDetlList.vue
@@ -1,24 +1,51 @@
 <template>
 	<view>
+		<view>褰撳墠搴撲綅鍙凤細{{locNo}}</view>
+		<view>褰撳墠璐ф灦鐮侊細{{barcode}}</view>
 		<view class="list list-font-color" :class="locDetl.color" v-for="(locDetl,index) in dataList" :key="index">
 			<view class="list-left">
 				<view>閿�鍞鍗曞彿锛歿{locDetl.threeCode}}</view>
 				<view>涓昏鍗曞彿锛歿{locDetl.orderNo}}</view>
 				<view>鍟嗗搧缂栫爜锛歿{locDetl.matnr}}</view>
 				<view>鍟嗗搧鍚嶇О锛歿{locDetl.maktx}}</view>
-				<view>搴撳瓨锛歿{locDetl.anfme}}</view>
-				<view>璋冩暣搴撳瓨涓猴細{{locDetl.barcode}}</view>
+				<view>搴撳瓨锛歿{locDetl.count}}</view>
 			</view>
-			<view class="list-right" @click="goToLocDetl(locDetl)">
+			<view class="list-right" @click="chageDetl(index)">
 				<uni-icons type="right" size="25"  color="#fff"></uni-icons>
 			</view>
 		</view>
 		<view style="height: 100rpx;display: flex;align-items: center;justify-content: center;" @click="add()">
 			<uni-icons type="folder-add" size="25"  color="#000" style="padding-right: 20rpx;"></uni-icons> 娣诲姞鐗╂枡
 		</view>
+		
+		
+		<!-- 寮圭獥 -->
+		<view>
+			<uni-popup ref="chageDetl" type="dialog">
+				<view class="popup">
+					<!-- 鏍囬 -->
+					<view class="title">鍟嗗搧淇℃伅</view>
+					<view class="popup-item">
+						<view>璁㈠崟鍙�</view>
+						<view style="margin-left: 20rpx;border-bottom: 1px solid #d8d8d8;"> <input type="text"> </view>
+					</view>
+					<view class="popup-item">
+						<view>閿�鍞崟鍙�</view>
+						<view style="margin-left: 20rpx;border-bottom: 1px solid #d8d8d8;"> <input type="text"> </view>
+					</view>
+					<view class="popup-item">
+						<uni-number-box :value="count" :step='1' :max="9999999" color="#747474" @change="changeValue" />
+					</view>
+					<view class="btn">
+						<view class="btn-left" @click="remove()">绉婚櫎</view>
+						<view class="btn-right" @click="changeCount()">淇敼</view>
+					</view>
+				</view>
+			</uni-popup>
+		</view>
 		<!-- 搴曢儴鎿嶄綔鎸夐挳 -->
 		<view class="buttom">
-			<button size="mini" type="primary" @click="agvStart('warn')">娣诲姞鐗╂枡</button>
+			<button size="mini" type="primary" @click="adjust('warn')">璋冩暣搴撳瓨</button>
 		</view>
 	</view>
 </template>
@@ -29,8 +56,11 @@
 			return {
 				baseUrl: '',
 				token: '',
-				dataList: []
-				
+				dataList: [],
+				count: '',
+				index: 0,
+				locNo: '',
+				barcode: ''
 			}
 		},
 		onShow() {
@@ -42,6 +72,11 @@
 			// 鐩戝惉acceptDataFromOpenerPage浜嬩欢锛岃幏鍙栦笂涓�椤甸潰閫氳繃eventChannel浼犻�佸埌褰撳墠椤甸潰鐨勬暟鎹�
 			eventChannel.on('item', function(data) {
 				console.log(data);
+				_this.locNo = data.item.locNo
+				_this.barcode = data.item.barcode
+				for (let k of data.item.data) {
+					k['count'] = k.anfme
+				}
 				_this.dataList = data.item.data
 			})
 		},
@@ -73,6 +108,7 @@
 					},
 					events: {
 						matList: function(data) {
+							data.data.barcode = _this.barcode
 							_this.checkMat(data.data)
 						},
 					},
@@ -108,6 +144,44 @@
 				if (add) {
 					this.dataList.unshift(mat)
 				}
+				this.$forceUpdate() // 寮哄埗鍒锋柊
+			},
+			chageDetl(index) {
+				this.index = index
+				this.count = this.dataList[index].anfme
+				this.$refs.chageDetl.open()
+			},
+			// 淇敼鏁伴噺
+			changeCount() {
+				if (this.count > this.orderCarList[this.index].anfme) {
+					uni.showToast({ title: '鏁伴噺涓嶅悎娉曪紒', icon: "none", position: 'top' })
+					return
+				}
+				this.orderCarList[this.index].pakinQty = this.count
+				this.$forceUpdate() // 寮哄埗鍒锋柊
+				this.$refs.chageDetl.close()
+			},
+			// 绉婚櫎鐗╂枡
+			remove() {
+				this.orderCarList.splice(this.index, 1)
+				this.$refs.chageDetl.close()
+			},
+			adjust() {
+				let _this = this
+				let param = {
+					locNo: _this.locNo,
+					list: _this.dataList
+				}
+				uni.request({
+					url: `${_this.baseUrl}/agv/locDdetl/adjust/start`,
+					header: {'token': uni.getStorageSync('token')},
+					data: param,
+					method: 'POST',
+					success(res) {
+						res = res.data
+						console.log(res);
+					}
+				})
 			}
 		}
 	}
@@ -115,4 +189,68 @@
 
 <style>
 	@import url('../../../static/css/common/order.css');
+	.popup {
+		width: 80vw;
+		min-height: 100rpx;
+		background-color: #FFF;
+		border-radius: 25rpx;
+		position: relative;
+	}
+	.title {
+		height: 100rpx;
+		line-height: 100rpx;
+		width: 100%;
+		color: #606266;
+		text-align: center;
+		font-size: 16px;
+	}
+	.popup-item {
+		height: 80rpx;
+		line-height: 80rpx;
+		display: flex;
+		align-items: center;
+		justify-content: center;
+	}
+	.popup-item-left {
+		width: 16vw;
+		padding-right: 20rpx;
+		text-align: right;
+		color: #606266;
+	}
+	.popup-item-right {
+		display: flex;
+		align-items: center;
+		width: 50vw;
+		height: 50rpx;
+		padding: 2px 5px;
+		border: 1px solid #E4E7ED;
+		border-radius: 5rpx;
+	}
+	.popup-item-right input{
+		color: #606266;
+	}
+	.btn {
+		display: flex;
+		height: 90rpx;
+		margin-top: 20rpx;
+		border-top: 1px solid #DCDFE6;
+		justify-content: center;
+		align-items: center;
+	}
+	.btn-left {
+		display: flex;
+		flex: 1;
+		height: 100%;
+		justify-content: center;
+		align-items: center;
+		color: #e2231a;
+		border-right: 1px solid #DCDFE6;
+	}
+	.btn-right {
+		display: flex;
+		flex: 1;
+		justify-content: center;
+		align-items: center;
+		color: #409EFF;
+	}
 </style>
diff --git a/pages/phyz/mat/matSelected.vue b/pages/phyz/mat/matSelected.vue
index 5ced9f1..8d66527 100644
--- a/pages/phyz/mat/matSelected.vue
+++ b/pages/phyz/mat/matSelected.vue
@@ -32,7 +32,7 @@
 			<view class="form-item">
 				<view class="form-item-desc"><text>鏁伴噺</text></view>
 				<view class="form-item-content">
-					<uni-number-box :value="mat.anfme" :max="99999999" :step='1' color="#747474" @change="changeValue" />
+					<uni-number-box :value="mat.count" :max="99999999" :step='1' color="#747474" @change="changeValue" />
 				</view>
 			</view>
 		</view>
@@ -56,7 +56,7 @@
 					maktx: null,
 					specs: null,
 					batch: null,
-					anfme: 0,
+					count: 0,
 				},
 				baseIP:'',
 				basePORT:'',
@@ -77,7 +77,7 @@
 			eventChannel.on('item', function(data) {
 				console.log(data);
 				that.mat = data.item
-				that.mat.anfme = 0
+				that.mat['count'] = 0
 			})
 			// #ifdef APP
 			setInterval(()=>{
@@ -109,10 +109,10 @@
 				
 			},
 			changeValue(value) {
-				this.mat.anfme = value
+				this.mat.count = value
 			},
 			back() {
-				if (this.mat.anfme === 0) {
+				if (this.mat.count === 0) {
 					uni.showToast({title: '璇疯緭鍏ユ暟閲�', icon: "none", position: 'top'});
 					return;
 				}

--
Gitblit v1.9.1