Files
pad-hl-hcx-new/pages/management/DeliveryConfirm.vue
2023-04-12 11:13:31 +08:00

142 lines
3.3 KiB
Vue

<template>
<view class="content">
<nav-bar title="发货确认"></nav-bar>
<view class="filter-confirm-wrap">
<view class="filter-confirm-wrap-inner">
<view class="filter-wrap">
<view class="search-item filter-item">
<label class="search-label">发货区点位</label>
<view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view>
</view>
<view class="search-item filter-item">
<label class="search-label">载具号</label>
<view class="filter_input_wraper">
<search-box
v-model="val1"
/>
</view>
</view>
</view>
<view class="confirm-button-wrap confirm-button-wrap-c">
<button class="confirm-button" @tap="toSearch">点位解绑</button>
<button class="confirm-button" :class="{'confirm-button_disabled': !val1 || !index1}" :disabled="disabled" @tap="toSure">全部解绑</button>
</view>
</view>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {getCacheLine, inOutExceptionInstQuery, inOutExceptionInstConfirm} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
options1: [{text: 'A1', value: 'A1'}, {text: 'A2', value: 'A2'}],
index1: 'A1',
val1: '',
dataList: [],
pkId: '',
disabled: false
};
},
methods: {
/** 选择器1 */
selectChange1(e) {
this.index1 = e
},
toSearch () {
this.dataList = []
this.pkId = ''
this._inOutExceptionInstQuery()
},
async _getCacheLine (id) {
let res = await getCacheLine(id)
this.options2 = [...res]
},
async _inOutExceptionInstQuery () {
let res = await inOutExceptionInstQuery(this.index2)
this.dataList = [...res]
},
async toSure () {
this.disabled = true
if (!this.pkId) {
uni.showToast({
title: '请选择',
icon: 'none'
})
this.disabled = false
return
}
if (!this.index2) {
uni.showToast({
title: '请选择缓存线',
icon: 'none'
})
this.disabled = false
return
}
if (!this.index3) {
uni.showToast({
title: '请选择位置类型',
icon: 'none'
})
this.disabled = false
return
}
if (!this.val1) {
uni.showToast({
title: '请扫满箱码',
icon: 'none'
})
this.disabled = false
return
}
try {
let res = await inOutExceptionInstConfirm(this.index2, this.val1, this.pkId, this.index3)
this.disabled = false
this.toSearch()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
},
toRadio (e) {
this.pkId = this.pkId === e.position_code ? '' : e.position_code
}
}
}
</script>
<style lang="stylus" scoped>
@import '../../common/style/mixin.styl';
.filter-confirm-wrap
_wh(100%, calc(100% - 72px))
background-color #f5f5f5
_fj()
.filter-confirm-wrap-inner
width 50%
background-color #fff
border-radius 12px
padding-bottom 15px
margin 0 auto
.filter-wrap
width 100%
padding 0 15px
_fj(center,,column,)
.filter-item
width 100%
.confirm-button-wrap-c
justify-content center
margin-top 50px
</style>