167 lines
4.5 KiB
Vue
167 lines
4.5 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 class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label">任务类型</span>
|
|
</view>
|
|
<view class="zd-col-24 filter_select">
|
|
<uni-data-select v-model="index4" :localdata="options4" @change="selectChange4"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view v-if="index4 === '1'">
|
|
<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 filter_input_disabled">物料名称</span>
|
|
</view>
|
|
<view class="zd-col-17">
|
|
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.material_name" disabled>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label filter_input_disabled">物料规格</span>
|
|
</view>
|
|
<view class="zd-col-17">
|
|
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.material_spec" disabled>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label filter_input_disabled">物料编码</span>
|
|
</view>
|
|
<view class="zd-col-17">
|
|
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.material_code" disabled>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label">物料数量</span>
|
|
</view>
|
|
<view class="zd-col-17">
|
|
<!-- <NumberInput v-model="val3" /> -->
|
|
<NumberInput
|
|
v-model="val3"
|
|
mode="integer"
|
|
/>
|
|
</view>
|
|
</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 || !index4 || !val3 || !currentData.material_code}" :disabled="disabled" @tap="_checkoutbillBackMaterial">确认</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import NumberInput from '@/components/NumberInput.vue'
|
|
import {checkoutbillBackMaterial} from '@/utils/getData4.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox,
|
|
NumberInput
|
|
},
|
|
data() {
|
|
return {
|
|
val1: '',
|
|
val2: '',
|
|
val3: '',
|
|
title: '',
|
|
options4: [{text:'退料', value:'1'}, {text:'退空桶', value: '2'}],
|
|
index4: '',
|
|
currentData: {},
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
onShow() {
|
|
if (this.$store.getters.publicObj !== '') {
|
|
this.currentData = this.$store.getters.publicObj
|
|
this.$store.dispatch('setPublicObj', '')
|
|
}
|
|
},
|
|
created () {
|
|
},
|
|
methods: {
|
|
toJump () {
|
|
uni.navigateTo({
|
|
url: '/pages/common/mater-list?title=查询物料'
|
|
})
|
|
},
|
|
selectChange4 (e) {
|
|
this.index4 = e
|
|
},
|
|
clearUp () {
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.index4 = ''
|
|
this.disabled = false
|
|
},
|
|
async _checkoutbillBackMaterial () {
|
|
this.disabled = true
|
|
if (!this.val1 || !this.val2 || !this.index4 || !this.val3 || !this.currentData.material_code) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await checkoutbillBackMaterial(this.val1, this.val2, this.index4, this.val3, this.currentData.material_code)
|
|
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>
|