From 7e375c39a62b464a07511d011b9c5c245de5f5f4 Mon Sep 17 00:00:00 2001
From: skyouc <creaycat@gmail.com>
Date: 星期一, 08 十二月 2025 15:58:02 +0800
Subject: [PATCH] 缓存入库逆向功能优化 组托功能优化
---
pages/pakin/PakinBind.vue | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/pages/pakin/PakinBind.vue b/pages/pakin/PakinBind.vue
index cb3fbb5..90b1cba 100644
--- a/pages/pakin/PakinBind.vue
+++ b/pages/pakin/PakinBind.vue
@@ -2,17 +2,12 @@
<view>
<view class="code">
<view class="item">
- <view class="code-decs">璁㈠崟鍙�:</view>
- <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="orderNo" :focus="orderNoFocus"
- @input="orderNoInput()">
- </view>
- <view class="item">
<view class="code-decs">鎵樼洏鐮�:</view>
<input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="barcode" :focus="barcodeFocus"
@input="barcodeInput()">
</view>
<view class="item">
- <view class="code-decs">鐗╂枡鐮�:</view>
+ <view class="code-decs">BS鐮�:</view>
<input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="matnr" :focus="matFocus" @input="findMat()">
<view class="item-right">
<button></button>
@@ -20,10 +15,15 @@
<uni-icons type="right" color="#c1c1c1"></uni-icons>
</view>
</view>
+ <view class="item">
+ <view class="code-decs">鍙拌溅:</view>
+ <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="orderNo" :focus="orderNoFocus"
+ @input="orderNoInput()">
+ </view>
</view>
<view class="mat-list-title">
鍟嗗搧鍒楄〃
- </view>
+ </view>
<scroll-view>
<view class="list" v-for="(item,i) in dataList" :key="i">
<view class="list-left">
@@ -228,11 +228,11 @@
findMat() {
let that = this
uni.request({
- url: that.baseUrl + '/mobile/scan/order/mats',
+ url: that.baseUrl + '/mobile/cache/task/list',
method: 'POST',
data: {
- orderNo: that.orderNo,
- matnr: that.matnr
+ barcode: that.barcode,
+ bsCode: that.matnr
},
header: {
'token': uni.getStorageSync('token')
--
Gitblit v1.9.1