Files
hht-ftdl-uni/pages/ftdl/line-call-mater.vue
2025-08-13 09:07:11 +08:00

127 lines
2.8 KiB
Vue

<template>
<view class="zd_container">
<!-- 产线叫料 -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="zd-row border-bottom">
<view class="zd-col-8">
<span class="filter_label">区域</span>
</view>
<view class="zd-col-16">
<search-box
v-model="val1"
@handleChange="handleChange1"
/>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">物料</span>
</view>
<view class="zd-col-17">
<input type="text" class="filter_input" v-model="currentData.material_name" @tap="toJump">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">托盘数</span>
</view>
<view class="zd-col-17">
<input type="number" class="filter_input" v-model="val2">
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2}" :disabled="disabled" @tap="_vehicleOutConfirm">确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {getRegionByPoint, vehicleOutConfirm} from '@/utils/getData4.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '1',
currentData: {},
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
},
onShow() {
if (this.$store.getters.publicObj !== '') {
this.currentData = this.$store.getters.publicObj
}
},
methods: {
handleChange1 (e) {
this._getRegionByPoint(e)
},
async _getRegionByPoint (e) {
try {
let res = await getRegionByPoint(e)
if (res) {
this.val1 = res.region_code
}
} catch (e) {
this.val1 = ''
}
},
toJump () {
uni.navigateTo({
url: '/pages/ftdl/mater-list0?title=查询物料'
})
},
clearUp () {
this.val1 = ''
this.val2 = ''
this.disabled = false
},
async _vehicleOutConfirm () {
this.disabled = true
if (!this.val1 || !this.val2) {
this.disabled = false
return
}
try {
let res = await vehicleOutConfirm(this.val1, this.currentData.material_code, this.val2)
if (res.code === '200') {
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
} else {
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled = false
}
} catch (e) {
this.disabled = false
}
}
}
}
</script>
<style lang="stylus">
</style>