Files
hht-zzzw-uni/pages/zw/materbox-instore.vue
2025-07-31 17:32:15 +08:00

130 lines
2.7 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-7">
<span class="filter_label">仓位编码</span>
</view>
<view class="zd-col-17">
<search-box
v-model="val1"
/>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">料桶编码</span>
</view>
<view class="zd-col-17">
<search-box
v-model="val2"
/>
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-11 button-primary" :class="{'button-info': !val1}" :disabled="disabled" @tap="_checkStruct">检查站点</button>
<button class="zd-col-11 button-primary" :class="{'button-info': !val1 || !val2 || flag === '2'}" :disabled="disabled2" @tap="_confirmSet">确认放置</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {checkStruct, confirmSet} from '@/utils/getData4.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
flag: '',
disabled: false,
disabled2: false,
};
},
onLoad (options) {
this.title = options.title
},
created () {
},
methods: {
clearUp () {
this.val1 = ''
this.val2 = ''
this.disabled = false
},
clearUp2 () {
this.val1 = ''
this.val2 = ''
this.disabled2 = false
},
async _checkStruct () {
console.log(1111)
this.disabled = true
if (!this.val1) {
this.disabled = false
return
}
try {
let res = await checkStruct(this.val1)
if (res.code === '200') {
this.flag = res.data.flag
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
}
},
async _confirmSet () {
this.disabled2 = true
if (!this.val1 || !this.val2 || this.flag === '2') {
this.disabled2 = false
return
}
try {
let res = await confirmSet(this.val1, this.val2)
if (res.code === '200') {
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
} else {
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled2 = false
}
} catch (e) {
this.disabled2 = false
}
}
}
}
</script>
<style lang="stylus">
</style>