153 lines
3.8 KiB
Vue
153 lines
3.8 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="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="index" :searchInput="true" :localdata="newoptions" @change="selectChange" @handleChange="handleChange" @showSelector="showSelector"></uni-data-select>
|
||
</view>
|
||
</view>
|
||
<view class="msg_item">暂存A位:{{obj.a_point}}</view>
|
||
<view class="msg_item">暂存B位:{{obj.b_point}}</view>
|
||
<view class="msg_item">提示:{{obj.tip}}</view>
|
||
</view>
|
||
</view>
|
||
<view class="zd-row submitbar">
|
||
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
|
||
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !index}" :disabled="disabled" @tap="toSure">上轴</button>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import NavBar from '@/components/NavBar.vue'
|
||
import {queryProductArea} from '@/utils/getData2.js'
|
||
import {getCutCacheAgvPoints, getUpShaftTip, doUpShaftToSlitter} from '@/utils/getData3.js'
|
||
export default {
|
||
components: {
|
||
NavBar
|
||
},
|
||
data() {
|
||
return {
|
||
title: '',
|
||
options: [],
|
||
index: '',
|
||
newoptions: [],
|
||
options2: [],
|
||
index2: '',
|
||
obj: {a_point: '-', b_point: '-', tip: '-'},
|
||
disabled: false
|
||
};
|
||
},
|
||
onLoad (options) {
|
||
this.title = options.title
|
||
},
|
||
created () {
|
||
this._queryProductArea()
|
||
},
|
||
methods: {
|
||
/** 生产区域下拉框查询 */
|
||
async _queryProductArea () {
|
||
let res = await queryProductArea()
|
||
this.options2 = [...res.data]
|
||
},
|
||
selectChange2(e) {
|
||
this.index2 = e
|
||
if (e) {
|
||
this._getCutCacheAgvPoints(e)
|
||
} else {
|
||
this.index = ''
|
||
}
|
||
},
|
||
async _getCutCacheAgvPoints (e) {
|
||
let res = await getCutCacheAgvPoints(e)
|
||
this.options = [...res]
|
||
this.newoptions = [...res]
|
||
},
|
||
selectChange (e) {
|
||
this.index = e
|
||
if (e) {
|
||
this._getUpShaftTip()
|
||
} else {
|
||
this.obj = {a_point: '-', b_point: '-', tip: '-'}
|
||
}
|
||
},
|
||
async _getUpShaftTip () {
|
||
try {
|
||
let res = await getUpShaftTip(this.index)
|
||
this.obj = res.data
|
||
} catch (e) {
|
||
console.log(e)
|
||
}
|
||
},
|
||
handleChange (e) {
|
||
if (e){
|
||
this.index = ''
|
||
this.newoptions = this.selectMatchItem(this.options, e)
|
||
} else {
|
||
this.newoptions = this.options
|
||
}
|
||
},
|
||
/** 模糊匹配 */
|
||
selectMatchItem (lists, keyWord) {
|
||
let resArr = []
|
||
lists.filter((item) => {
|
||
if (item.text.indexOf(keyWord) > -1) {
|
||
resArr.push(item)
|
||
}
|
||
})
|
||
return resArr
|
||
},
|
||
showSelector () {
|
||
this.newoptions = this.options
|
||
},
|
||
toSure () {
|
||
this.disabled = true
|
||
if (!this.index) {
|
||
this.disabled = false
|
||
return
|
||
}
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '确定呼叫桁架上气胀轴?',
|
||
confirmColor: '#ff6a00',
|
||
success: (res) => {
|
||
if (res.confirm) {
|
||
this._doUpShaftToSlitter()
|
||
} else if (res.cancel) {
|
||
this.disabled = false
|
||
}
|
||
}
|
||
})
|
||
},
|
||
async _doUpShaftToSlitter () {
|
||
try {
|
||
let res = await doUpShaftToSlitter(this.index)
|
||
uni.showToast({
|
||
title: res.message,
|
||
icon: 'none'
|
||
})
|
||
this.clearUp()
|
||
this.disabled = false
|
||
} catch (e) {
|
||
this.disabled = false
|
||
}
|
||
},
|
||
clearUp () {
|
||
this.index = ''
|
||
this.index2 = ''
|
||
this.options = []
|
||
this.obj = {a_point: '-', b_point: '-', tip: '-'}
|
||
}
|
||
}
|
||
}
|
||
</script> |