生产区发货确认

This commit is contained in:
2023-08-25 16:44:45 +08:00
parent 5d9a49bfd9
commit b933bdd642

View File

@@ -8,7 +8,7 @@
<span class="filter_label">木箱</span> <span class="filter_label">木箱</span>
</view> </view>
<view class="filter_input_wraper"> <view class="filter_input_wraper">
<search-box v-model="val1" :focused="true" <search-box v-model="val1" :focused="focusedflg" @handleChange="handleChange1"
/> />
</view> </view>
</view> </view>
@@ -62,6 +62,7 @@
}, },
data() { data() {
return { return {
focusedflg: true,
val1: '', val1: '',
billCode: '', billCode: '',
dataList: [], dataList: [],
@@ -73,6 +74,9 @@
this._stivtDtlQuery() this._stivtDtlQuery()
}, },
methods: { methods: {
handleChange1 (e) {
this._stivtDtlQuery(e)
},
goIn () { goIn () {
uni.navigateTo({ uni.navigateTo({
url: `/pages/WarehouseManage/ProdDelivery` url: `/pages/WarehouseManage/ProdDelivery`
@@ -94,6 +98,7 @@
let res = await stoutConfirm(this.val1) let res = await stoutConfirm(this.val1)
this.disabled1 = false this.disabled1 = false
this.val1 = '' this.val1 = ''
this.focusedflg = true
this._stivtDtlQuery() this._stivtDtlQuery()
uni.showToast({ uni.showToast({
title: res.message, title: res.message,