122 lines
3.2 KiB
Vue
122 lines
3.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="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" :localdata="options" @change="selectChange"></uni-data-select>
|
||
</view>
|
||
</view>
|
||
<view class="msg_item">上轴子卷号:{{obj.up}}</view>
|
||
<view class="msg_item">下轴子卷号:{{obj.down}}</view>
|
||
<view class="msg_item">提示:{{obj.msg}}</view>
|
||
</view>
|
||
</view>
|
||
<view class="zd-row submitbar">
|
||
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">清空</button>
|
||
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !index}" @tap="toSure">确认</button>
|
||
</view>
|
||
<uni-popup ref="alertDialog" type="dialog">
|
||
<uni-popup-dialog type="info" cancelText="关闭" confirmText="确定" title="提示" content="确认是否创建下卷桁架任务?" @confirm="dialogConfirm"></uni-popup-dialog>
|
||
</uni-popup>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import NavBar from '@/components/NavBar.vue'
|
||
import SearchBox from '@/components/SearchBox.vue'
|
||
import {queryProductArea} from '@/utils/getData2.js'
|
||
import {slitterDevices, downRolls, querySlitterDeviceSubVolumeInfos} from '@/utils/getData3.js'
|
||
export default {
|
||
components: {
|
||
NavBar,
|
||
SearchBox
|
||
},
|
||
data() {
|
||
return {
|
||
title: '',
|
||
options: [],
|
||
index: '',
|
||
options2: [],
|
||
index2: '',
|
||
obj: {up: '-', down: '-', msg: '-'}
|
||
};
|
||
},
|
||
onLoad (options) {
|
||
this.title = options.title
|
||
},
|
||
created () {
|
||
this._queryProductArea()
|
||
},
|
||
methods: {
|
||
selectChange2(e) {
|
||
this.index2 = e
|
||
if (e) {
|
||
this._slitterDevices(e)
|
||
} else {
|
||
this.index = ''
|
||
}
|
||
},
|
||
/** 生产区域下拉框查询 */
|
||
async _queryProductArea () {
|
||
let res = await queryProductArea()
|
||
this.options2 = [...res.data]
|
||
},
|
||
async _slitterDevices (e) {
|
||
let res = await slitterDevices(e)
|
||
this.options = [...res]
|
||
},
|
||
selectChange (e) {
|
||
this.index = e
|
||
if (e) {
|
||
this._querySlitterDeviceSubVolumeInfos()
|
||
} else {
|
||
this.obj = {up: '-', down: '-', msg: '-'}
|
||
}
|
||
},
|
||
toSure () {
|
||
if (!this.index) {
|
||
return
|
||
}
|
||
this.$refs.alertDialog.open()
|
||
},
|
||
dialogConfirm () {
|
||
this._downRolls()
|
||
},
|
||
async _downRolls () {
|
||
try {
|
||
let res = await downRolls(this.index)
|
||
uni.showToast({
|
||
title: res.message,
|
||
icon: 'none'
|
||
})
|
||
} catch (e) {
|
||
console.log(e)
|
||
}
|
||
},
|
||
clearUp () {
|
||
this.index = ''
|
||
this.index2 = ''
|
||
this.options = []
|
||
this.obj = {up: '-', down: '-', msg: '-'}
|
||
},
|
||
async _querySlitterDeviceSubVolumeInfos () {
|
||
try {
|
||
let res = await querySlitterDeviceSubVolumeInfos(this.index)
|
||
this.obj = res.data
|
||
} catch (e) {
|
||
console.log(e)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script> |