Files
hht-tongbo/pages/ProductManage/SboProcess.vue

265 lines
6.6 KiB
Vue
Raw Normal View History

2022-10-11 08:39:10 +08:00
<template>
2022-10-15 15:29:58 +08:00
<view class="zd_container">
2022-10-12 17:12:45 +08:00
<nav-bar title="生箔工序"></nav-bar>
2022-10-15 15:29:58 +08:00
<view class="zd_content">
<view class="zd_wrapper">
2022-10-12 17:12:45 +08:00
<view class="filter_item">
<view class="filter_label_wraper">
2022-12-12 10:24:10 +08:00
<span class="filter_label">点位</span>
2022-10-12 17:12:45 +08:00
</view>
<view class="filter_input_wraper">
2022-10-14 16:36:08 +08:00
<search-box v-model="val1"
/>
2022-10-12 17:12:45 +08:00
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">母卷</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val2" />
</view>
</view>
</view>
2022-10-15 15:29:58 +08:00
<view class="zd_wrapper grid-wraper">
2022-10-12 17:12:45 +08:00
<view class="slide_new">
<table>
<thead>
<tr>
<th>状态</th>
<th>母卷号</th>
2022-12-12 10:24:10 +08:00
<th>工单号</th>
2022-10-12 17:12:45 +08:00
<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>{{e.container_name}}</td>
2022-12-12 10:24:10 +08:00
<td>{{e.mfg_order_name}}</td>
2022-10-12 17:12:45 +08:00
<td>{{e.point_code}}</td>
2022-10-27 18:33:30 +08:00
<td>{{e.product_name}}</td>
2022-10-12 17:12:45 +08:00
<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>
2022-12-09 10:43:49 +08:00
<uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/>
2022-10-12 17:12:45 +08:00
</view>
<view class="submit-bar">
2023-02-08 17:02:09 +08:00
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled1" @tap="_needEmptyAxis">呼叫</button>
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled5" @tap="_needEmptyVehicle">呼叫空轴</button>
2022-10-12 17:12:45 +08:00
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled2" @tap="_confirmBlanking">确认下卷</button>
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled3" @tap="_finishBlanking">下卷完成</button>
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled4" @tap="_finish">结束</button>
2022-12-09 10:43:49 +08:00
<button class="submit-button" @tap="searchList">查询</button>
2022-10-12 17:12:45 +08:00
</view>
2022-10-11 08:39:10 +08:00
</view>
</template>
<script>
2022-10-12 17:12:45 +08:00
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
2023-02-08 17:02:09 +08:00
import {queryRawFoilList, needEmptyAxis, needEmptyVehicle, confirmBlanking, finishBlanking, finish} from '@/utils/getData1.js'
2022-10-11 08:39:10 +08:00
export default {
2022-10-12 17:12:45 +08:00
components: {
NavBar,
SearchBox
},
2022-10-11 08:39:10 +08:00
data() {
return {
2022-10-12 17:12:45 +08:00
val1: '',
val2: '',
dataList: [],
pkId: '',
pkObj: {},
2022-10-14 16:05:55 +08:00
disabled1: false,
disabled2: false,
disabled3: false,
2022-12-09 10:43:49 +08:00
disabled4: false,
2023-02-08 17:02:09 +08:00
disabled5: false,
2022-12-09 10:43:49 +08:00
reload: false,
status: 'more',
contentText: {
contentdown: '查看更多',
contentrefresh: '加载中',
contentnomore: '没有更多'
},
totalCount: 0,
pageNum: 1,
pageSize: 10
2022-10-11 08:39:10 +08:00
};
2022-10-12 17:12:45 +08:00
},
created () {
2022-10-14 16:05:55 +08:00
this._queryRawFoilList()
2022-10-12 17:12:45 +08:00
},
methods: {
2022-12-09 10:43:49 +08:00
searchList () {
this.dataList = []
2022-12-12 09:55:21 +08:00
this.pageNum = 1
2022-12-09 10:43:49 +08:00
this._queryRawFoilList()
},
2022-10-12 17:12:45 +08:00
handleChange (e) {
2022-10-14 16:38:33 +08:00
// console.log(e)
2022-10-12 17:12:45 +08:00
},
/** 初始化查询 */
async _queryRawFoilList () {
2022-12-09 10:43:49 +08:00
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'
}
2022-10-12 17:12:45 +08:00
},
async _needEmptyAxis () {
this.disabled1 = true
if (!this.pkId) {
this.disabled1 = false
return
}
try {
let res = await needEmptyAxis(this.pkObj)
this.disabled1 = false
2022-10-14 16:05:55 +08:00
this.pkId = ''
this.pkObj = {}
2022-12-09 15:08:48 +08:00
this.searchList()
2022-11-11 18:22:26 +08:00
uni.showToast({
title: res.message,
icon: 'none'
})
2022-10-12 17:12:45 +08:00
} catch (e) {
this.disabled1 = false
}
},
2023-02-08 17:02:09 +08:00
async _needEmptyVehicle () {
this.disabled5 = true
if (!this.pkId) {
this.disabled5 = false
return
}
try {
2023-02-20 11:15:57 +08:00
let res = await needEmptyVehicle(this.val1)
2023-02-08 17:02:09 +08:00
this.disabled5 = false
uni.showToast({
title: res.message,
icon: 'none'
})
2023-02-21 14:16:03 +08:00
this.val1 = ''
2023-02-08 17:02:09 +08:00
} catch (e) {
this.disabled5 = false
}
},
2022-10-12 17:12:45 +08:00
async _confirmBlanking () {
this.disabled2 = true
if (!this.pkId) {
this.disabled2 = false
return
}
try {
let res = await confirmBlanking(this.pkObj)
this.disabled2 = false
2022-10-14 16:05:55 +08:00
this.pkId = ''
this.pkObj = {}
2022-12-09 15:08:48 +08:00
this.searchList()
2022-11-11 18:22:26 +08:00
uni.showToast({
title: res.message,
icon: 'none'
})
2022-10-12 17:12:45 +08:00
} 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({
2022-10-15 10:58:20 +08:00
title: res.message,
2022-10-12 17:12:45 +08:00
icon: 'none'
})
this.disabled3 = false
2022-10-14 16:05:55 +08:00
this.pkId = ''
this.pkObj = {}
2022-12-09 15:08:48 +08:00
this.searchList()
2022-10-12 17:12:45 +08:00
} 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({
2022-10-15 10:58:20 +08:00
title: res.message,
2022-10-12 17:12:45 +08:00
icon: 'none'
})
this.disabled4 = false
2022-10-14 16:05:55 +08:00
this.pkId = ''
this.pkObj = {}
2022-12-09 15:08:48 +08:00
this.searchList()
2022-10-12 17:12:45 +08:00
} 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 : {}
}
2022-10-11 08:39:10 +08:00
}
}
</script>
<style lang="stylus">
2022-10-15 15:29:58 +08:00
.zd_content
2022-10-14 16:36:08 +08:00
padding-bottom 154rpx
2022-10-12 17:12:45 +08:00
.slide_new table td:first-child, .slide_new table th:first-child
width 92rpx
.slide_new table td:nth-child(2), .slide_new table th:nth-child(2)
position sticky
2022-10-14 16:05:55 +08:00
left 89rpx
2022-10-12 17:12:45 +08:00
z-index 102
2022-10-15 15:17:49 +08:00
box-shadow 1px 0 2px rgba(0,0,0,.12)
2022-10-11 08:39:10 +08:00
</style>