332 lines
8.6 KiB
Vue
332 lines
8.6 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar title="空轴配送"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="filter_item">
|
|
<view class="filter_label">区域</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">设备</span>
|
|
</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">气涨轴</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val2"
|
|
/>
|
|
</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="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="val3"
|
|
/>
|
|
</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>
|
|
<th>纸筒/FRP管</th>
|
|
<th>纸筒物料编码</th>
|
|
<th>纸筒物料描述</th>
|
|
<th>纸筒规格</th>
|
|
<th>FRP管物料编码</th>
|
|
<th>FRP管物料描述</th>
|
|
<th>FRP管规格</th>
|
|
<th>订单号</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.checked}">
|
|
<td>{{Number(i) + 1}}</td>
|
|
<td><span class="iconfont icon_unchecked" :class="{'icon_checked': e.checked}" @tap="toCheck(e)"></span></td>
|
|
<td>{{e.qzzno}}</td>
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.split_group}}</td>
|
|
<td>{{e.manufacture_sort}}</td>
|
|
<td>{{e.manufacture_date}}</td>
|
|
<td>{{e.container_name}}</td>
|
|
<td>{{e.paper_tube_or_FRP}}</td>
|
|
<td>{{e.paper_tube_material}}</td>
|
|
<td>{{e.paper_tube_description}}</td>
|
|
<td>{{e.paper_tube_model}}</td>
|
|
<td>{{e.FRP_material}}</td>
|
|
<td>{{e.FRP_description}}</td>
|
|
<td>{{e.FRP_model}}</td>
|
|
<td>{{e.mfg_order_name}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="submit-bar">
|
|
<button class="submit-button" :class="{'btn-disabled': !val3}" :disabled="disabled5" @tap="_acrossVehicle">载具横移</button>
|
|
<button class="submit-button" :class="{'btn-disabled': checkArr.length === 0 || checkArr.length > 1}" :disabled="disabled1" @tap="_needVehicle">呼叫载具</button>
|
|
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled4" @tap="_shippingCheck">配送校验</button>
|
|
<button class="submit-button" :class="{'btn-disabled': !checkArr.length || !val3}" :disabled="disabled2" @tap="_shippingConfirm">配送确认</button>
|
|
<button class="submit-button" :class="{'btn-disabled': !val3 || checkArr.length > 0}" :disabled="disabled3" @tap="_returnVehicle">载具送回</button>
|
|
<button class="submit-button" @tap="_queryMaterialInfo">查询</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {queryProductArea, queryDeviceByarea, queryMaterialInfo3, needVehicle, shippingConfirm, returnVehicle, shippingCheck, acrossVehicle} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
val1: '',
|
|
val2: '',
|
|
val3: '',
|
|
options1: [],
|
|
index1: '',
|
|
options2: [],
|
|
index2: '',
|
|
qty: '',
|
|
dataList: [],
|
|
disabled1: false,
|
|
disabled2: false,
|
|
disabled3: false,
|
|
disabled4: false,
|
|
disabled5: false,
|
|
checkArr: []
|
|
};
|
|
},
|
|
created () {
|
|
this._queryProductArea()
|
|
this._queryMaterialInfo()
|
|
},
|
|
methods: {
|
|
/** 选择器1 */
|
|
selectChange1(e) {
|
|
this.index1 = e
|
|
if (e) {
|
|
this._queryDeviceByarea(e)
|
|
} else {
|
|
this.index2 = ''
|
|
}
|
|
},
|
|
/** 生产区域下拉框查询 */
|
|
async _queryProductArea () {
|
|
let res = await queryProductArea()
|
|
this.options1 = [...res.data]
|
|
},
|
|
/** 选择器2 */
|
|
selectChange2(e) {
|
|
this.index2 = e
|
|
},
|
|
/** 设备下拉框 */
|
|
async _queryDeviceByarea (e) {
|
|
let res = await queryDeviceByarea(e)
|
|
this.options2 = [...res.data]
|
|
},
|
|
/** 初始化查询 */
|
|
async _queryMaterialInfo () {
|
|
let res = await queryMaterialInfo3(this.val1, this.val2, this.index1, this.index2)
|
|
if (this.val2) {
|
|
res.data.map(el => {
|
|
this.$set(el, 'checked', true)
|
|
})
|
|
} else {
|
|
res.data.map(el => {
|
|
this.$set(el, 'checked', false)
|
|
})
|
|
}
|
|
this.dataList = [...res.data]
|
|
this.checkArr = this.dataList.filter(i => { return i.checked === true })
|
|
},
|
|
/** 呼叫载具 */
|
|
async _needVehicle () {
|
|
this.disabled1 = true
|
|
if (this.checkArr.length === 0 || this.checkArr.length > 1) {
|
|
this.disabled1 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await needVehicle(this.checkArr[0])
|
|
this.disabled1 = false
|
|
this.checkArr = []
|
|
this._queryMaterialInfo()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled1 = false
|
|
}
|
|
},
|
|
/** 确认 */
|
|
async _shippingConfirm () {
|
|
this.disabled2 = true
|
|
if (!this.checkArr.length || !this.val3) {
|
|
this.disabled2 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await shippingConfirm(this.checkArr, this.val3, this.val1)
|
|
this.disabled2 = false
|
|
this.checkArr = []
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val3 = ''
|
|
this._queryMaterialInfo()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled2 = false
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val3 = ''
|
|
}
|
|
},
|
|
/** 载具送回 */
|
|
async _returnVehicle () {
|
|
this.disabled3 = true
|
|
if (this.checkArr.length > 0) {
|
|
this.disabled3 = false
|
|
return
|
|
}
|
|
if (!this.val3) {
|
|
uni.showToast({
|
|
title: '请输入起点',
|
|
icon: 'none'
|
|
})
|
|
this.disabled3 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await returnVehicle(this.val3, this.val1)
|
|
this.disabled3 = false
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val3 = ''
|
|
this._queryMaterialInfo()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled3 = false
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val3 = ''
|
|
}
|
|
},
|
|
/** 载具横移 */
|
|
async _acrossVehicle () {
|
|
this.disabled5 = true
|
|
if (!this.val3) {
|
|
uni.showToast({
|
|
title: '请输入起点',
|
|
icon: 'none'
|
|
})
|
|
this.disabled5 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await acrossVehicle(this.val3)
|
|
this.disabled5 = false
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val3 = ''
|
|
this._queryMaterialInfo()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled5 = false
|
|
}
|
|
},
|
|
toCheck (e) {
|
|
e.checked = !e.checked
|
|
this.checkArr = this.dataList.filter(i => { return i.checked === true })
|
|
},
|
|
/** 配送校验 */
|
|
async _shippingCheck () {
|
|
this.disabled4 = true
|
|
if (!this.val1) {
|
|
uni.showToast({
|
|
title: '请输入载具码',
|
|
icon: 'none'
|
|
})
|
|
this.disabled4 = false
|
|
return
|
|
}
|
|
if (!this.val2) {
|
|
uni.showToast({
|
|
title: '请输入气涨轴',
|
|
icon: 'none'
|
|
})
|
|
this.disabled4 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await shippingCheck(this.val1, this.val2)
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
this.disabled4 = false
|
|
} catch (e) {
|
|
this.disabled4 = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
.slide_new table td:first-child, .slide_new table th:first-child
|
|
width 92rpx
|
|
.slide_new table td:nth-child(2), .slide_new table th:nth-child(2)
|
|
position sticky
|
|
left 89rpx
|
|
z-index 102
|
|
box-shadow 1px 0 2px rgba(0,0,0,.12)
|
|
</style>
|