Files
hht-tongbo-two/pages/WarehouseManage/SemifinishedOutStore.vue
2024-07-16 15:20:42 +08:00

144 lines
3.6 KiB
Vue

<template>
<view class="zd_container">
<!-- <nav-bar title="半成品出库"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
<search-box
v-model="val1"
/>
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">母卷</span>
</view>
<view class="filter_input_wraper">
<search-box
v-model="val2"
/>
</view>
</view>
<view class="filter_item">
<view class="filter_label">区域</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>点位</th>
<th>母卷号</th>
<th>产品编号</th>
<th>产品描述</th>
<th>总重量</th>
<th>入烘箱时间</th>
<th>出烘箱时间</th>
<th>是否烘烤</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.point_code === pkId}">
<td>{{e.point_code}}</td>
<td>{{e.container_name}}</td>
<td>{{e.product_name}}</td>
<td>{{e.description}}</td>
<td>{{e.productin_qty}}</td>
<td>{{e.in_time}}</td>
<td>{{e.out_time}}</td>
<td>{{e.is_bake}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !pkId || !val1}" :disabled="disabled" @tap="_outconfirmInstor">确认出库</button>
<button class="zd-col-6 btn-submit btn-success letter-30" @tap="_outcoolIOQuery">查询</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea, outcoolIOQuery, outconfirmInstor} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
options: [],
index: '',
dataList: [],
pkId: '',
pkObj: {},
disabled: false
};
},
created () {
this._outcoolIOQuery()
this._queryProductArea()
},
onLoad (options) {
this.title = options.title
},
methods: {
/** 选择器 */
selectChange(e) {
this.index = e
},
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options = [...res.data]
},
/** 初始化查询 */
async _outcoolIOQuery () {
let res = await outcoolIOQuery(this.val2, this.index)
this.dataList = [...res.data]
},
/** 确认 */
async _outconfirmInstor () {
this.disabled = true
if (!this.pkId || !this.val1) {
this.disabled = false
return
}
try {
let res = await outconfirmInstor(this.pkObj, this.val1)
this.disabled = false
this.pkId = ''
this.pkObj = {}
this._outcoolIOQuery()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
},
toCheck (e) {
this.pkId = this.pkId === e.point_code ? '' : e.point_code
this.pkObj = this.pkId === e.point_code ? e : {}
}
}
}
</script>