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

188 lines
5.0 KiB
Vue
Raw Normal View History

2024-06-28 09:01:05 +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-06-28 09:01:05 +08:00
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label">区域</view>
2024-06-28 09:01:05 +08:00
<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> -->
<uni-data-select v-model="index" :searchInput="true" :localdata="newoptions" @change="selectChange" @handleChange="handleChange" @showSelector="showSelector"></uni-data-select>
2024-06-28 09:01:05 +08:00
</view>
</view>
2024-07-22 08:55:19 +08:00
<view class="msg_item">暂存A位{{obj.a_point}}</view>
<view class="msg_item">暂存B位{{obj.b_point}}</view>
<view class="msg_item">状态{{obj.status}}</view>
2024-06-28 09:01:05 +08:00
</view>
</view>
<view class="zd-row submitbar">
2024-08-15 13:44:51 +08:00
<button class="zd-col-5 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
2024-08-15 13:54:25 +08:00
<button class="zd-col-8 btn-submit btn-success letter-30" :class="{'btn-info': !index || index2 !== 'B2'}" :disabled="disabled" @tap="toSure(2)">暂存区</button>
2024-08-15 13:44:51 +08:00
<button class="zd-col-8 btn-submit btn-success letter-30" :class="{'btn-info': !index}" :disabled="disabled" @tap="toSure(1)">内包间</button>
2024-06-28 09:01:05 +08:00
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import {queryProductArea} from '@/utils/getData2.js'
2024-08-15 13:44:51 +08:00
import {getCutCacheAgvPoints, sendSubVolumeToNBJ, queryCacheDownSubVolumeInfos, markingFoilSlittingToCache} from '@/utils/getData3.js'
2024-06-28 09:01:05 +08:00
export default {
components: {
NavBar
},
data() {
return {
2024-07-16 15:50:04 +08:00
title: '',
2024-06-28 09:01:05 +08:00
options: [],
index: '',
newoptions: [],
options2: [],
index2: '',
2024-08-15 13:44:51 +08:00
obj: {a_point: '-', b_point: '-', status: '-'},
disabled: false
2024-06-28 09:01:05 +08:00
};
},
2024-07-16 15:50:04 +08:00
onLoad (options) {
this.title = options.title
},
2024-06-28 09:01:05 +08:00
created () {
this._queryProductArea()
2024-06-28 09:01:05 +08:00
},
methods: {
selectChange2(e) {
this.index2 = e
if (e) {
this._getCutCacheAgvPoints(e)
} else {
this.index = ''
}
},
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options2 = [...res.data]
},
2024-06-28 09:01:05 +08:00
selectChange (e) {
this.index = e
2024-07-22 08:55:19 +08:00
if (e) {
this._queryCacheDownSubVolumeInfos()
} else {
this.obj = {a_point: '-', b_point: '-', status: '-'}
}
2024-06-28 09:01:05 +08:00
},
/** 模糊匹配 */
selectMatchItem (lists, keyWord) {
let resArr = []
lists.filter((item) => {
if (item.text.indexOf(keyWord) > -1) {
resArr.push(item)
}
})
return resArr
},
handleChange (e) {
if (e){
this.index = ''
this.newoptions = this.selectMatchItem(this.options, e)
} else {
this.newoptions = this.options
}
},
showSelector () {
this.newoptions = this.options
},
async _getCutCacheAgvPoints (e) {
let res = await getCutCacheAgvPoints(e)
2024-06-28 09:01:05 +08:00
this.options = [...res]
this.newoptions = [...res]
2024-06-28 09:01:05 +08:00
},
2024-08-15 13:44:51 +08:00
toSure (type) {
this.disabled = true
if (!this.index && type === 1) {
this.disabled = false
2024-06-28 09:01:05 +08:00
return
}
2024-08-15 13:54:25 +08:00
if ((!this.index || this.index2 !== 'B2') && type === 2) {
2024-08-15 13:44:51 +08:00
this.disabled = false
return
}
2024-08-15 14:00:55 +08:00
if (type === 1) {
uni.showModal({
title: '提示',
content: '确认是否创建送到内包间AGV任务',
confirmColor: '#ff6a00',
success: (res) => {
if (res.confirm) {
2024-08-15 13:44:51 +08:00
this._sendSubVolumeToNBJ()
2024-08-15 14:00:55 +08:00
} else if (res.cancel) {
this.disabled = false
2024-08-15 13:44:51 +08:00
}
2024-08-15 14:00:55 +08:00
}
})
}
if (type === 2) {
uni.showModal({
title: '提示',
content: '确认是否创建送到暂存区AGV任务',
confirmColor: '#ff6a00',
success: (res) => {
if (res.confirm) {
2024-08-15 13:44:51 +08:00
this._markingFoilSlittingToCache()
2024-08-15 14:00:55 +08:00
} else if (res.cancel) {
this.disabled = false
2024-08-15 13:44:51 +08:00
}
}
2024-08-15 14:00:55 +08:00
})
}
2024-07-24 17:42:42 +08:00
},
async _sendSubVolumeToNBJ () {
2024-06-28 09:01:05 +08:00
try {
let res = await sendSubVolumeToNBJ(this.index)
uni.showToast({
title: res.message,
icon: 'none'
})
2025-06-12 13:09:12 +08:00
this.clearUp()
2024-08-15 13:44:51 +08:00
this.disabled = false
2024-06-28 09:01:05 +08:00
} catch (e) {
2024-08-15 13:44:51 +08:00
this.disabled = false
}
},
async _markingFoilSlittingToCache () {
try {
let res = await markingFoilSlittingToCache(this.index)
uni.showToast({
title: res.message,
icon: 'none'
})
2025-06-12 13:09:12 +08:00
this.clearUp()
2024-08-15 13:44:51 +08:00
this.disabled = false
} catch (e) {
this.disabled = false
2024-06-28 09:01:05 +08:00
}
},
clearUp () {
this.index = ''
this.index2 = ''
this.options = []
2024-07-22 08:55:19 +08:00
this.obj = {a_point: '-', b_point: '-', status: '-'}
},
async _queryCacheDownSubVolumeInfos () {
try {
let res = await queryCacheDownSubVolumeInfos(this.index)
this.obj = res.data
} catch (e) {
console.log(e)
}
2024-06-28 09:01:05 +08:00
}
}
}
</script>