Files
hht-tongbo-two/pages/SecondPhase/slitting/CallAxis.vue
2025-07-15 10:01:17 +08:00

177 lines
4.5 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>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>设备</th>
<th>子卷号</th>
<th>母卷号</th>
<th>组别</th>
<th>上下轴</th>
<th>呼叫状态</th>
<th>气胀轴尺寸</th>
<th>呼叫时间</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.workorder_id === pkId}">
<td>{{e.resource_name}}</td>
<td>{{e.container_name}}</td>
<td>{{e.parent_container_name}}</td>
<td>{{e.split_group}}</td>
<td>{{['上轴', '下轴'][Number(e.up_or_down) - 1]}}</td>
<td>{{['未呼叫', '已呼叫'][Number(e.status)]}}</td>
<td>{{e.qzz_size}}</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" @tap="clearUp">清空</button>
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !index}" @tap="_doCallTubeShaftShow(index)">刷新</button>
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !index || !pkId || pkObj.status === '1'}" :disabled="disabled" @tap="toSure">确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea} from '@/utils/getData2.js'
import {slitterDevices, doCallTubeShaftShow, doCallTubeShaft} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
options: [],
index: '',
options2: [],
index2: '',
dataList: [],
pkId: '',
pkObj: {},
disabled: false
};
},
onLoad (options) {
this.title = options.title
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._doCallTubeShaftShow(e)
} else {
this.dataList = []
}
},
async _doCallTubeShaftShow (e) {
if (!this.index) {
return
}
try {
let res = await doCallTubeShaftShow(e)
if (res) {
this.dataList = [...res]
} else {
this.dataList = []
}
} catch (e) {
this.dataList = []
}
},
toCheck (e) {
this.pkId = this.pkId === e.workorder_id ? '' : e.workorder_id
this.pkObj = this.pkId === e.workorder_id ? e : {}
},
toSure () {
this.disabled = false
if (!this.index || !this.pkId || this.pkObj.status === '1') {
this.disabled = false
return
}
uni.showModal({
title: '提示',
content: `将呼叫母卷:${this.pkObj.parent_container_name}${this.pkObj.split_group}组的计划`,
confirmColor: '#ff6a00',
success: (res) => {
if (res.confirm) {
this._doCallTubeShaft()
} else if (res.cancel) {
this.disabled = false
}
}
})
},
async _doCallTubeShaft () {
this.disabled = true
try {
let res = await doCallTubeShaft(this.index, this.pkObj)
if (res) {
uni.showToast({
title: res.message,
icon: 'none'
})
this.pkId = ''
this.pkObj = {}
this._doCallTubeShaftShow(this.index)
}
this.disabled = false
} catch (e) {
this.disabled = false
}
},
clearUp () {
this.index = ''
this.index2 = ''
this.options = []
this.pkId = ''
this.pkObj = {}
}
}
}
</script>