空木箱上线-中木箱号

This commit is contained in:
x
2026-07-31 11:08:06 +08:00
parent cb512eae07
commit bc25d5d2ff
5 changed files with 16 additions and 2 deletions

View File

@@ -12,6 +12,14 @@
<search-box v-model="val1" />
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">{{$t('filter.middle-box-no')}}</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val4" />
</view>
</view>
<view class="filter_item is-required">
<view class="filter_label_wraper">
<span class="filter_label">{{$t('filter.down-box-no')}}</span>
@@ -55,6 +63,7 @@
val1: '',
val2: '',
val3: '',
val4: '',
disabled: false
};
},
@@ -74,7 +83,7 @@
async _boxUpLine () {
this.disabled = true
try {
let res = await boxUpLine(this.val1, this.val3, this.val2)
let res = await boxUpLine(this.val1, this.val4, this.val3, this.val2)
uni.showToast({
title: res.message,
icon: 'none'
@@ -92,6 +101,7 @@
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.val4 = ''
this.$refs.scanChild.toDel()
}
}