179 lines
4.8 KiB
Vue
179 lines
4.8 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar :title="$t('menu.empty-shaft-entry-station')"></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="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">{{$t('filter.device')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index3" :localdata="options3" @change="selectChange3"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">{{$t('filter.point')}}</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{$t('grid.number')}}</th>
|
|
<th>{{$t('filter.air-shaft')}}</th>
|
|
<th>{{$t('grid.sub-roll-number')}}</th>
|
|
<th>{{$t('grid.machine-code')}}</th>
|
|
<th>{{$t('grid.split-group')}}</th>
|
|
<th>{{$t('grid.place')}}</th>
|
|
<th>{{$t('grid.delivery-completed')}}</th>
|
|
<th>{{$t('grid.production-sequence')}}</th>
|
|
<th>{{$t('grid.grid.date-of-manufacture')}}</th>
|
|
<th>{{$t('grid.order-number')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.container_name === pkId}">
|
|
<td>{{Number(i) + 1}}</td>
|
|
<td>{{e.qzzno}}</td>
|
|
<td>{{e.container_name}}</td>
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.split_group}}</td>
|
|
<td>{{e.delivery_code}}</td>
|
|
<td>{{e.is_child_ps_ok}}</td>
|
|
<td>{{e.manufacture_sort}}</td>
|
|
<td>{{e.manufacture_date}}</td>
|
|
<td>{{e.mfg_order_name}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="submit-bar">
|
|
<button class="submit-button" :class="{'btn-disabled': !index1 || !pkId}" :disabled="disabled" @tap="_inConfirm">{{$t('button.upload-empty-shaft')}}</button>
|
|
<button class="submit-button" @tap="_queryMaterialInfo">{{$t('button.search')}}</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {devicePointQuery, queryProductArea, queryDeviceByarea, queryMaterialInfo5, inConfirm} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
options1: [],
|
|
index1: '',
|
|
options2: [],
|
|
index2: '',
|
|
options3: [],
|
|
index3: '',
|
|
dataList: [],
|
|
pkId: '',
|
|
pkObj: {},
|
|
disabled: false
|
|
};
|
|
},
|
|
created () {
|
|
this._queryProductArea()
|
|
this._queryMaterialInfo()
|
|
},
|
|
methods: {
|
|
/** 选择器 */
|
|
selectChange1(e) {
|
|
this.index = e
|
|
},
|
|
selectChange2(e) {
|
|
this.index2 = e
|
|
if (e) {
|
|
this._queryDeviceByarea(e)
|
|
} else {
|
|
this.index3 = ''
|
|
}
|
|
},
|
|
/** 点位下拉框查询 */
|
|
async _devicePointQuery (e) {
|
|
let res = await devicePointQuery(e)
|
|
this.options1 = [...res.data]
|
|
},
|
|
/** 生产区域下拉框查询 */
|
|
async _queryProductArea () {
|
|
let res = await queryProductArea()
|
|
this.options2 = [...res.data]
|
|
},
|
|
/** 选择器3 */
|
|
selectChange3(e) {
|
|
this.index3 = e
|
|
if (e) {
|
|
this._devicePointQuery(e)
|
|
} else {
|
|
this.index1 = ''
|
|
}
|
|
},
|
|
/** 设备下拉框 */
|
|
async _queryDeviceByarea (e) {
|
|
let res = await queryDeviceByarea(e)
|
|
this.options3 = [...res.data]
|
|
},
|
|
/** 初始化查询 */
|
|
async _queryMaterialInfo () {
|
|
let res = await queryMaterialInfo5(this.index3, this.index2)
|
|
this.dataList = [...res.data]
|
|
},
|
|
/** 确认 */
|
|
async _inConfirm () {
|
|
this.disabled = true
|
|
if (!this.index1) {
|
|
uni.showToast({
|
|
title: '点位不能为空',
|
|
icon: 'none'
|
|
})
|
|
this.disabled = false
|
|
return
|
|
}
|
|
if (!this.pkId) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await inConfirm(this.index1, this.pkObj)
|
|
this.disabled = false
|
|
this.pkId = ''
|
|
this.pkObj = {}
|
|
this.index1 = ''
|
|
this.index3 = ''
|
|
this._queryMaterialInfo()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
toCheck (e) {
|
|
this.pkId = this.pkId === e.container_name ? '' : e.container_name
|
|
this.pkObj = this.pkId === e.container_name ? e : {}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
</style>
|