Files
hht-tongbo-two/pages/SecondPhase/production/SboProcess.vue

298 lines
7.5 KiB
Vue
Raw Normal View History

2024-04-25 14:29:54 +08:00
<template>
<view class="zd_container">
2024-07-16 15:43:00 +08:00
<!-- <nav-bar title="生箔工序"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
2024-04-25 14:29:54 +08:00
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1"
/>
</view>
</view>
<view class="zd-row">
<view class="zd-col-19">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">母卷</span>
</view>
<view class="filter_input_wraper">
<search-box
2024-05-13 17:09:27 +08:00
ref="scanChild"
2024-04-25 14:29:54 +08:00
v-model="val2"
@handleChange="handleChange"
/>
</view>
</view>
</view>
<view class="zd-col-4">
<button class="btn-submit btn-success" @tap="searchList">查询</button>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>状态</th>
<th class="th_2">母卷号</th>
2024-04-25 14:29:54 +08:00
<th>工单号</th>
<th>机台编码</th>
<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.container_name === pkId}">
<td>{{e.status_name}}</td>
<td class="td_2">{{e.container_name}}</td>
2024-04-25 14:29:54 +08:00
<td>{{e.mfg_order_name}}</td>
<td>{{e.point_code}}</td>
<td>{{e.product_name}}</td>
<td>{{e.theory_height}}</td>
<td>{{e.realstart_time}}</td>
<td>{{e.realend_time}}</td>
<td>{{e.productin_qty}}</td>
<td>{{e.agvno}}</td>
<td>{{e.product_area}}</td>
<td>{{e.update_time}}</td>
</tr>
</tbody>
</table>
</view>
</view>
<uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/>
</view>
<view class="zd-row submitbar">
2024-11-07 13:50:03 +08:00
<button class="zd-col-3 btn-submit btn-success" :disabled="disabled1" @tap="_needEmptyAxis">呼叫</button>
2024-05-10 13:57:52 +08:00
<button class="zd-col-5 btn-submit btn-success" :disabled="disabled4" @tap="_createOrder">创建工单</button>
2024-04-25 14:29:54 +08:00
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !(val1 && !pkId)}" :disabled="disabled5" @tap="_needEmptyVehicle">呼叫空轴</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled2" @tap="_confirmBlanking">准备就绪</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled3" @tap="_finishBlanking">确认下卷</button>
</view>
<up-top ref="UT" :scrollTop="top"></up-top>
2024-04-25 14:29:54 +08:00
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import UpTop from '@/components/upTop.vue'
2024-04-25 14:29:54 +08:00
import {queryRawFoilList, needEmptyVehicle, confirmBlanking, finishBlanking, finish} from '@/utils/getData1.js'
2024-11-07 13:50:03 +08:00
import {needEmptyAxis, createOrder} from '@/utils/getData3.js'
2024-04-25 14:29:54 +08:00
export default {
components: {
NavBar,
SearchBox,
UpTop
2024-04-25 14:29:54 +08:00
},
data() {
return {
2024-07-16 15:43:00 +08:00
title: '',
top: 0,
2024-04-25 14:29:54 +08:00
val1: '',
val2: '',
dataList: [],
pkId: '',
pkObj: {},
disabled1: false,
disabled2: false,
disabled3: false,
disabled4: false,
disabled5: false,
reload: false,
status: 'more',
contentText: {
contentdown: '查看更多',
contentrefresh: '加载中',
contentnomore: '没有更多'
},
totalCount: 0,
pageNum: 1,
pageSize: 10
2024-04-25 14:29:54 +08:00
};
},
2024-07-16 15:43:00 +08:00
onLoad (options) {
this.title = options.title
},
onPageScroll(e) {
this.$refs.UT.topData(e.scrollTop)
},
2024-04-25 14:29:54 +08:00
created () {
// this._queryRawFoilList()
},
2024-05-13 17:09:27 +08:00
mounted () {
this.$refs.scanChild.handleFocus()
},
2024-04-25 14:29:54 +08:00
methods: {
searchList () {
this.pkId = ''
this.pkObj = {}
this.totalCount = 0
this.dataList = []
this.pageNum = 1
this._queryRawFoilList()
},
handleChange (e) {
// this.searchList()
},
/** 初始化查询 */
async _queryRawFoilList () {
let res = await queryRawFoilList(this.val1, this.val2, this.pageNum + '', this.pageSize + '')
this.totalCount = res.size
if (res.size > 0) {
const dataMap = res.data
this.dataList = this.reload ? dataMap : this.dataList.concat(dataMap)
this.reload = false
} else {
this.dataList = []
}
if (this.totalCount == this.dataList.length) {
this.reload = false
this.status = 'noMore'
}
},
onReachBottom () {
if (this.totalCount > this.dataList.length) {
this.status = 'loading'
setTimeout(() => {
this.pageNum++
this._queryRawFoilList()
}, 1000)
} else { //停止加载
this.status = 'noMore'
}
},
/** 呼叫 */
2024-11-07 13:50:03 +08:00
async _needEmptyAxis () {
2024-04-25 14:29:54 +08:00
this.disabled1 = true
try {
let res = await needEmptyAxis(this.val1, this.val2)
2024-04-25 14:29:54 +08:00
this.disabled1 = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled1 = false
}
},
2024-05-10 13:57:52 +08:00
/** 创建工单 */
async _createOrder () {
this.disabled4 = true
try {
let res = await createOrder(this.val1, this.val2)
this.disabled4 = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled4 = false
}
},
2024-04-25 14:29:54 +08:00
async _needEmptyVehicle () {
this.disabled5 = true
if (!(this.val1 && !this.pkId)) {
this.disabled5 = false
return
}
try {
let res = await needEmptyVehicle(this.val1)
this.disabled5 = false
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
} catch (e) {
this.disabled5 = false
}
},
async _confirmBlanking () {
this.disabled2 = true
if (!this.pkId) {
this.disabled2 = false
return
}
try {
let res = await confirmBlanking(this.pkObj)
this.disabled2 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled2 = false
}
},
async _finishBlanking () {
this.disabled3 = true
if (!this.pkId) {
this.disabled3 = false
return
}
try {
let res = await finishBlanking(this.pkObj)
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled3 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
} catch (e) {
this.disabled3 = false
}
},
async _finish () {
this.disabled4 = true
if (!this.pkId) {
this.disabled4 = false
return
}
try {
let res = await finish(this.pkObj)
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled4 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
} catch (e) {
this.disabled4 = false
}
},
toCheck (e) {
this.pkId = this.pkId === e.container_name ? '' : e.container_name
this.pkObj = this.pkId === e.container_name ? e : {}
},
cleanUp () {
this.val1 = ''
this.val2 = ''
this.pkId = ''
this.pkObj = {}
this.totalCount = 0
this.dataList = []
this.pageNum = 1
}
}
}
</script>