Files
hht-tongbo-two/pages/WarehouseManage/EmptyOutStore.vue
2024-07-16 15:43:00 +08:00

84 lines
2.1 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">
<search-box v-model="val1" @handleChange="handleChange1"/>
</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="val2" />
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-22 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !val2}" :disabled="disabled1" @tap="_emptyVehiclepointOperate">出库</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {emptyVehiclepointOperate, emptyVehiclepointStatusQuery} from '@/utils/getData1.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
disabled1: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
handleChange1 (e) {
this._emptyVehiclepointStatusQuery(e)
},
/** 1.2点位状态查询 */
async _emptyVehiclepointStatusQuery (val1) {
if (!val1) {
return
}
let res = await emptyVehiclepointStatusQuery(val1)
this.val2 = res.data.vehicle_code
},
async _emptyVehiclepointOperate () {
this.disabled1 = true
if (!this.val1 || !this.val2) {
this.disabled1 = false
return
}
try {
let res = await emptyVehiclepointOperate(this.val1, this.val2, '0')
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
this.val2 = ''
this.disabled1 = false
} catch (e) {
this.disabled1 = false
}
}
}
}
</script>