From 76ae45bef979f38d251837f6be274d602a5375b7 Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期三, 13 十一月 2024 14:33:50 +0800
Subject: [PATCH] #

---
 pages/phyz/orderOut/orderCheck.vue |   27 ++++++++++++++++++++++-----
 1 files changed, 22 insertions(+), 5 deletions(-)

diff --git a/pages/phyz/orderOut/orderCheck.vue b/pages/phyz/orderOut/orderCheck.vue
index bd47f2c..ffce221 100644
--- a/pages/phyz/orderOut/orderCheck.vue
+++ b/pages/phyz/orderOut/orderCheck.vue
@@ -75,7 +75,8 @@
 				option: '',
 				options: [],
 				combDis: false,
-				maxCount: 0
+				maxCount: 0,
+				orderType: ''
 			}
 		},
 		onShow() {
@@ -91,7 +92,18 @@
 			// })
 			eventChannel.on('item', function(data) {
 				let ids = [data.item.id]
-				_this.getPakoutList(ids)
+				if (data.item.orderType == 'bcp') {
+					_this.getPakoutList(ids,'bcp')
+				} else {
+					_this.getPakoutList(ids,null)
+				}
+				
+			})
+			eventChannel.on('type', function(data) {
+				console.log(data);
+				if (data) {
+					_this.orderType = data.type
+				}
 			})
 		},
 		methods: {
@@ -109,10 +121,10 @@
 				item.agvStaNo = option
 			},
 			// 璁㈠崟鏄庣粏
-			getPakoutList(ids,locNo) {
+			getPakoutList(ids,bcp) {
 				let _this = this
 				uni.request({
-					url: `${_this.baseUrl}/out/pakout/preview/auth`,
+					url: `${_this.baseUrl}/bcp/out/pakout/preview/auth`,
 					header: {'token': uni.getStorageSync('token')},
 					data: ids,
 					method: 'POST',
@@ -124,6 +136,11 @@
 									k['isOpen'] = false
 									k['count'] = k.anfme
 									k.anfme = 0
+									if (_this.orderType == 'bcp') {
+										if (k.locNo.substring(k.locNo.length - 1, k.locNo.length) == 1) {
+											continue
+										}
+									}
 									_this.dataList.push(k)
 								}
 							}
@@ -167,7 +184,7 @@
 					data: combList,
 					method: 'POST',
 					success(res) {
-						_this.combDis = true
+						_this.combDis = false
 						res = res.data
 						if (res.code === 200) {
 							uni.hideLoading({})

--
Gitblit v1.9.1