Files
hht-hengsen-uni/pages/pick/pick-task.vue

181 lines
4.9 KiB
Vue
Raw Normal View History

2024-07-22 17:32:37 +08:00
<template>
2024-08-02 17:26:50 +08:00
<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-24">
2024-08-09 13:53:23 +08:00
<input type="text" class="filter_input" @click="toJump" v-model="data.code">
2024-08-02 17:26:50 +08:00
</view>
</view>
2024-08-09 13:53:23 +08:00
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">料箱编码</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.vehicle_code">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">车间</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.product_area">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">拣选仓库</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.stor_code">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">拣选站台</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.point_code">
2024-08-02 17:26:50 +08:00
</view>
</view>
2024-08-09 13:53:23 +08:00
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">物料名称</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.material_name">
2024-08-02 17:26:50 +08:00
</view>
</view>
2024-08-09 13:53:23 +08:00
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">物料数量</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.qty">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">拣选数量</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.assign_qty">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">移出料箱</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.out_pick_vehicle">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">移出数量</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.out_qty">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">是否人工搬运</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.is_move">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">移入料箱</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.in_pick_vehicle">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">移入数量</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input" v-model="data.in_qty">
2024-08-02 17:26:50 +08:00
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
2024-08-09 13:53:23 +08:00
<button class="zd-col-15 button-primary" :class="{'button-info': JSON.stringify(data) === '{}'}" :disabled="disabled" @tap="_savePickTask">拣选确认</button>
2024-08-02 17:26:50 +08:00
</view>
2024-07-22 17:32:37 +08:00
</view>
</template>
<script>
2024-08-02 17:26:50 +08:00
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
2024-08-09 13:53:23 +08:00
import {savePickTask} from '@/utils/getData2.js'
2024-07-22 17:32:37 +08:00
export default {
2024-08-02 17:26:50 +08:00
components: {
NavBar,
SearchBox
},
2024-07-22 17:32:37 +08:00
data() {
return {
2024-08-09 13:53:23 +08:00
data: {},
2024-08-02 17:26:50 +08:00
disabled: false
2024-07-22 17:32:37 +08:00
};
2024-08-02 17:26:50 +08:00
},
onLoad (options) {
this.title = options.title
},
2024-08-09 13:53:23 +08:00
onShow() {
if (this.$store.getters.publicObj !== '') {
this.data = this.$store.getters.publicObj
}
2024-08-02 17:26:50 +08:00
},
methods: {
toJump () {
uni.navigateTo({
url: '/pages/pick/pick-list?title=拣选单列表'
})
},
clearUp () {
2024-08-09 13:53:23 +08:00
this.data = {}
2024-08-02 17:26:50 +08:00
this.disabled = false
},
2024-08-09 13:53:23 +08:00
async _savePickTask () {
2024-08-02 17:26:50 +08:00
this.disabled = true
2024-08-09 13:53:23 +08:00
if (JSON.stringify(this.data) === '{}') {
2024-08-02 17:26:50 +08:00
this.disabled = false
return
}
try {
2024-08-09 13:53:23 +08:00
let res = await savePickTask(this.data)
2024-08-02 17:26:50 +08:00
if (res.code === '200') {
uni.showToast({
title: res.msg,
icon: 'none'
})
this.clearUp()
} else {
this.disabled = false
}
} catch (e) {
this.disabled = false
}
}
2024-07-22 17:32:37 +08:00
}
}
</script>
<style lang="stylus">
</style>