From aa131f0805c7f9475a87738aeb8c80069a999a43 Mon Sep 17 00:00:00 2001 From: whycq <913841844@qq.com> Date: 星期三, 08 一月 2025 12:54:11 +0800 Subject: [PATCH] # --- pages/phyz/orderOut/orderCheck.vue | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/pages/phyz/orderOut/orderCheck.vue b/pages/phyz/orderOut/orderCheck.vue index 3008a81..8322a53 100644 --- a/pages/phyz/orderOut/orderCheck.vue +++ b/pages/phyz/orderOut/orderCheck.vue @@ -38,7 +38,7 @@ <view class="title">鍑哄簱鏁伴噺</view> <view class="popup-item"> <view> - <uni-number-box :value="data.anfme" :step='1' :min="0" :max="maxCount" color="#747474" @change="changeValue" /> + <uni-number-box :value="data.anfme" :step='0.01' :min="0" :max="maxCount" color="#747474" @change="changeValue" /> </view> </view> @@ -92,7 +92,12 @@ // }) 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); @@ -116,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', @@ -179,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