Files
hht-tongbo-two/pages/SecondPhase/slitting/UpperShaftCut2.vue
蔡玲 02e7bad05f 112
2025-01-06 08:46:33 +08:00

121 lines
3.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="zd_container">
<!-- <nav-bar title="分切上轴2"></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.tip}}</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/mork2.js'
import {queryProductArea} from '@/utils/getData2.js'
import {slitterDevices, doUpShaftToSlitterByDeviceTip, doUpShaftToSlitterByDevice} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
options: [],
index: '',
options2: [],
index2: '',
obj: {tip: '-'}
};
},
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._doUpShaftToSlitterByDeviceTip()
} else {
this.obj = {tip: '-'}
}
},
toSure () {
if (!this.index) {
return
}
this.$refs.alertDialog.open()
},
dialogConfirm () {
this._doUpShaftToSlitterByDevice()
},
async _doUpShaftToSlitterByDevice () {
try {
let res = await doUpShaftToSlitterByDevice(this.index2, this.index)
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
console.log(e)
}
},
clearUp () {
this.index = ''
this.index2 = ''
this.options = []
this.obj = {tip: '-'}
},
async _doUpShaftToSlitterByDeviceTip () {
try {
let res = await doUpShaftToSlitterByDeviceTip(this.index2, this.index)
this.obj = res
} catch (e) {
console.log(e)
}
}
}
}
</script>