Files
hht-tongbo-two/pages/SecondPhase/EmptyBoxInStore.vue
2026-03-31 09:35:43 +08:00

97 lines
2.4 KiB
Vue

<template>
<view class="zd_container">
<!-- <nav-bar title="空木箱入库"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">木箱号</span>
</view>
<view class="filter_input_wraper">
<link-scan ref="scanChild" @getScanlist="getScanlist"/>
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val3" />
</view>
</view>
<view class="filter_item">
<view class="filter_label">层数</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !val2 || !val3}" :disabled="disabled" @tap="_twoPdaBoxIn">入库</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import LinkScan from '@/components/LinkScan.vue'
import {twoPdaBoxIn} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox,
LinkScan
},
data() {
return {
title: '',
val2: '',
val3: '',
options: [{value: '1', text: '1'}, {value: '2', text: '2'}],
index: '',
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
getScanlist (e) {
this.val2 = e.join()
},
selectChange (e) {
this.index = e
},
async _twoPdaBoxIn () {
this.disabled = true
if (!this.val2 || !this.val3) {
this.disabled = false
return
}
try {
let res = await twoPdaBoxIn(this.val2, this.val3, this.index)
uni.showToast({
title: res.message,
icon: 'none'
})
this.val2 = ''
this.index = ''
this.$refs.scanChild.toDel()
this.disabled = false
} catch (e) {
this.disabled = false
}
},
clearUp () {
this.val2 = ''
this.val3 = ''
this.index = ''
this.$refs.scanChild.toDel()
}
}
}
</script>