Files
hht-tongbo-yinni/pages/ProductManage/EmptyPipeOutStore.vue
2023-12-26 11:17:51 +08:00

127 lines
3.3 KiB
Vue

<template>
<view class="zd_container">
<nav-bar :title="$t('menu.air-traffic-control-outbound')"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label">{{$t('filter.area')}}</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index" :placeholder="$t('uni.dataSelect.placeholder')" :emptyTips="$t('uni.dataSelect.emptyTips')" :localdata="options" @change="selectChange"></uni-data-select>
</view>
</view>
<view class="filter_item">
<view class="filter_label">{{$t('filter.quantity')}}</view>
<view class="filter_input_wraper">
<input type="text" class="filter_input" v-model="qty">
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>{{$t('filter.device')}}</th>
<th>{{$t('grid.material-name')}}</th>
<th>{{$t('filter.quantity')}}</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.device_code === pkId}">
<td>{{e.device_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.qty}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="submit-bar">
<button class="submit-button" :class="{'btn-disabled': !pkId || !qty}" :disabled="disabled" @tap="_emptyConfirm">{{$t('button.confirm')}}</button>
<button class="submit-button" @tap="_queryPaperTubeInfo">{{$t('button.search')}}</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea, queryPaperTubeInfo, emptyConfirm} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
options: [],
index: '',
qty: '',
dataList: [],
pkId: '',
pkObj: {},
disabled: false
};
},
created () {
this._queryProductArea()
},
methods: {
/** 选择器 */
selectChange(e) {
this.index = e
},
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options = [...res.data]
},
/** 初始化查询 */
async _queryPaperTubeInfo () {
let res = await queryPaperTubeInfo(this.index)
this.dataList = [...res.rows]
},
/** 确认 */
async _emptyConfirm () {
this.disabled = true
if (!this.pkId) {
uni.showToast({
// title: '请选择一行',
title: this.$t('toast.select-row'),
icon: 'none'
})
this.disabled = false
return
}
if (!this.qty) {
uni.showToast({
// title: '请填写数量',
title: this.$t('toast.quantity-not-empty'),
icon: 'none'
})
this.disabled = false
return
}
try {
let res = await emptyConfirm(this.qty, this.pkObj.material_code, this.pkObj.device_code, '2')
this.disabled = false
this.pkId = ''
this.pkObj = {}
this._queryPaperTubeInfo()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
},
toCheck (e) {
this.pkId = this.pkId === e.device_code ? '' : e.device_code
this.pkObj = this.pkId === e.device_code ? e : {}
}
}
}
</script>