Files
hht-tongbo-two/pages/SecondPhase/slitting/SlittingCutting.vue

123 lines
3.2 KiB
Vue
Raw Normal View History

2024-05-31 10:13:13 +08:00
<template>
<view class="zd_container">
2024-07-16 15:50:04 +08:00
<!-- <nav-bar title="分切下料"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
2024-05-31 10:13:13 +08:00
<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>
2024-05-31 10:13:13 +08:00
<view class="filter_input_wraper">
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
</view>
</view>
2024-07-19 17:40:58 +08:00
<view class="msg_item">上轴子卷号{{obj.up}}</view>
<view class="msg_item">下轴子卷号{{obj.down}}</view>
<view class="msg_item">提示{{obj.msg}}</view>
2024-05-31 10:13:13 +08:00
</view>
</view>
<view class="zd-row submitbar">
2024-07-22 08:46:42 +08:00
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">清空</button>
2024-07-24 17:24:38 +08:00
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !index}" @tap="toSure">确认</button>
2024-05-31 10:13:13 +08:00
</view>
2024-07-24 17:24:38 +08:00
<uni-popup ref="alertDialog" type="dialog">
<uni-popup-dialog type="info" cancelText="关闭" confirmText="确定" title="提示" content="确认是否创建下卷桁架任务?" @confirm="dialogConfirm"></uni-popup-dialog>
</uni-popup>
2024-05-31 10:13:13 +08:00
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea} from '@/utils/getData2.js'
2024-07-19 17:40:58 +08:00
import {slitterDevices, downRolls, querySlitterDeviceSubVolumeInfos} from '@/utils/getData3.js'
2024-05-31 10:13:13 +08:00
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
2024-07-16 15:50:04 +08:00
title: '',
2024-05-31 10:13:13 +08:00
options: [],
index: '',
options2: [],
index2: '',
2024-07-19 17:40:58 +08:00
obj: {up: '-', down: '-', msg: '-'}
2024-05-31 10:13:13 +08:00
};
},
2024-07-16 15:50:04 +08:00
onLoad (options) {
this.title = options.title
},
2024-05-31 11:20:20 +08:00
created () {
this._queryProductArea()
2024-05-31 11:20:20 +08:00
},
2024-05-31 10:13:13 +08:00
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)
2024-05-31 10:13:13 +08:00
this.options = [...res]
},
selectChange (e) {
this.index = e
2024-07-22 08:46:42 +08:00
if (e) {
this._querySlitterDeviceSubVolumeInfos()
} else {
this.obj = {up: '-', down: '-', msg: '-'}
}
2024-05-31 10:13:13 +08:00
},
2024-07-24 17:24:38 +08:00
toSure () {
2024-05-31 10:13:13 +08:00
if (!this.index) {
return
}
2024-07-24 17:24:38 +08:00
this.$refs.alertDialog.open()
},
dialogConfirm () {
this._downRolls()
},
async _downRolls () {
2024-05-31 10:13:13 +08:00
try {
let res = await downRolls(this.index)
uni.showToast({
title: res.message,
icon: 'none'
})
2025-06-12 13:09:12 +08:00
this.clearUp()
2024-05-31 10:13:13 +08:00
} catch (e) {
2024-07-24 17:24:38 +08:00
console.log(e)
2024-05-31 10:13:13 +08:00
}
},
clearUp () {
this.index = ''
this.index2 = ''
this.options = []
2024-07-22 08:55:19 +08:00
this.obj = {up: '-', down: '-', msg: '-'}
2024-07-19 17:40:58 +08:00
},
async _querySlitterDeviceSubVolumeInfos () {
2024-07-22 08:46:42 +08:00
try {
let res = await querySlitterDeviceSubVolumeInfos(this.index)
this.obj = res.data
} catch (e) {
console.log(e)
2024-07-19 18:05:16 +08:00
}
2024-05-31 10:13:13 +08:00
}
}
}
</script>