273 lines
7.2 KiB
Vue
273 lines
7.2 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">区域</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">上轴左</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="upL" :searchInput="true" :localdata="newaxis1" @handleChange="handleChange1" @showSelector="showSelector1"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">上轴右</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="upR" :searchInput="true" :localdata="newaxis2" @handleChange="handleChange2" @showSelector="showSelector2"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">下轴左</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="lowL" :searchInput="true" :localdata="newaxis3" @handleChange="handleChange3" @showSelector="showSelector3"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">下轴右</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="lowR" :searchInput="true" :localdata="newaxis4" @handleChange="handleChange4" @showSelector="showSelector4"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>序号</th>
|
|
<th class="th_2">设备</th>
|
|
<th>位置</th>
|
|
<th>尺寸</th>
|
|
<th>状态</th>
|
|
<th>代数</th>
|
|
<th>呼叫时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i">
|
|
<td>{{Number(i) + 1}}</td>
|
|
<td class="td_2">{{e.resource_name}}</td>
|
|
<td>{{['上轴', '下轴'][Number(e.up_or_down) - 1]}}</td>
|
|
<td>{{e.qzz_size}}</td>
|
|
<td>{{getStatusText(e.status)}}</td>
|
|
<td>{{e.qzz_generation}}</td>
|
|
<td>{{e.start_time}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submitbar">
|
|
<button class="zd-col-5 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
|
|
<button class="zd-col-8 btn-submit btn-success letter-30" :class="{'btn-info': !index2 || (!upL && !upR && !lowL && !lowR)}" :disabled="disabled" @tap="_forcedFeedShaft">送轴</button>
|
|
<button class="zd-col-8 btn-submit btn-success" @tap="_showManualView">刷新</button>
|
|
</view>
|
|
<up-top ref="UT" :scrollTop="top"></up-top>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import UpTop from '@/components/upTop.vue'
|
|
import {queryProductArea, queryDeviceByarea, showManualView} from '@/utils/getData2.js'
|
|
import {paperQueryPaperMaterial, forcedFeedShaft} from '@/utils/getData3.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox,
|
|
UpTop
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
top: 0,
|
|
options1: [],
|
|
index1: '',
|
|
options2: [],
|
|
index2: '',
|
|
axis: [],
|
|
newaxis1: [],
|
|
newaxis2: [],
|
|
newaxis3: [],
|
|
newaxis4: [],
|
|
upL: '',
|
|
upR: '',
|
|
lowL: '',
|
|
lowR: '',
|
|
disabled: false,
|
|
dataList: []
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
this._queryProductArea()
|
|
this._paperQueryPaperMaterial()
|
|
this._showManualView()
|
|
},
|
|
onPageScroll(e) {
|
|
this.$refs.UT.topData(e.scrollTop)
|
|
},
|
|
methods: {
|
|
/** 生产区域下拉框查询 */
|
|
async _queryProductArea () {
|
|
let res = await queryProductArea()
|
|
this.options1 = [...res.data]
|
|
},
|
|
selectChange1(e) {
|
|
this.index1 = e
|
|
if (e) {
|
|
this._queryDeviceByarea(e)
|
|
} else {
|
|
this.index2 = ''
|
|
}
|
|
},
|
|
/** 设备下拉框 */
|
|
async _queryDeviceByarea (e) {
|
|
let res = await queryDeviceByarea(e)
|
|
this.options2 = [...res.data]
|
|
},
|
|
selectChange2(e) {
|
|
this.index2 = e
|
|
},
|
|
async _paperQueryPaperMaterial () {
|
|
let res = await paperQueryPaperMaterial()
|
|
this.axis = [...res.rows]
|
|
},
|
|
clearUp () {
|
|
this.index1 = ''
|
|
this.index2 = ''
|
|
this.options2 = []
|
|
this.upL = ''
|
|
this.upR = ''
|
|
this.lowL = ''
|
|
this.lowR = ''
|
|
this.disabled = false
|
|
},
|
|
async _forcedFeedShaft () {
|
|
this.disabled = true
|
|
if (!this.index2 || (!this.upL && !this.upR && !this.lowL && !this.lowR)) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
let deviceT = ''
|
|
let upLT = ''
|
|
let upRT = ''
|
|
let lowLT = ''
|
|
let lowRT = ''
|
|
this.options2.map(el => {
|
|
if (el.value === this.index2) {
|
|
deviceT = el.text
|
|
}
|
|
})
|
|
this.axis.map(el => {
|
|
if (el.value === this.upL) {
|
|
upLT = el.text
|
|
}
|
|
if (el.value === this.upR) {
|
|
upRT = el.text
|
|
}
|
|
if (el.value === this.lowL) {
|
|
lowLT = el.text
|
|
}
|
|
if (el.value === this.lowR) {
|
|
lowRT = el.text
|
|
}
|
|
})
|
|
try {
|
|
let res = await forcedFeedShaft(this.index1, deviceT, this.index2, upLT, this.upL, upRT, this.upR, lowLT, this.lowL, lowRT, this.lowR)
|
|
this.disabled = false
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
/** 模糊匹配 */
|
|
selectMatchItem (lists, keyWord) {
|
|
let resArr = []
|
|
lists.filter((item) => {
|
|
if (item.text.indexOf(keyWord) > -1) {
|
|
resArr.push(item)
|
|
}
|
|
})
|
|
return resArr
|
|
},
|
|
handleChange1 (e) {
|
|
if (e){
|
|
this.upL = ''
|
|
this.newaxis1 = this.selectMatchItem(this.axis, e)
|
|
} else {
|
|
this.newaxis1 = this.axis
|
|
}
|
|
},
|
|
showSelector1 () {
|
|
this.newaxis1 = this.axis
|
|
},
|
|
handleChange2 (e) {
|
|
if (e){
|
|
this.upR = ''
|
|
this.newaxis2 = this.selectMatchItem(this.axis, e)
|
|
} else {
|
|
this.newaxis2 = this.axis
|
|
}
|
|
},
|
|
showSelector2 () {
|
|
this.newaxis2 = this.axis
|
|
},
|
|
handleChange3 (e) {
|
|
if (e){
|
|
this.lowL = ''
|
|
this.newaxis3 = this.selectMatchItem(this.axis, e)
|
|
} else {
|
|
this.newaxis3 = this.axis
|
|
}
|
|
},
|
|
showSelector3 () {
|
|
this.newaxis3 = this.axis
|
|
},
|
|
handleChange4 (e) {
|
|
if (e){
|
|
this.lowR = ''
|
|
this.newaxis4 = this.selectMatchItem(this.axis, e)
|
|
} else {
|
|
this.newaxis4 = this.axis
|
|
}
|
|
},
|
|
showSelector4 () {
|
|
this.newaxis4 = this.axis
|
|
},
|
|
getStatusText(status) {
|
|
const statusMap = {
|
|
'01': '准备套轴',
|
|
'02': '正在配送',
|
|
'03': '配送完成'
|
|
}
|
|
return statusMap[status] || '已完成'
|
|
},
|
|
async _showManualView () {
|
|
let res = await showManualView()
|
|
if (res) {
|
|
this.dataList = [...res]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |