Files
hht-ynhl-one-uni/pages/SecondPhase/production/SboProcess.vue

246 lines
7.2 KiB
Vue
Raw Normal View History

2025-05-23 15:38:21 +08:00
<template>
<view class="zd_container">
<!-- <nav-bar title="生箔工序"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
2025-06-13 18:03:52 +08:00
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label">{{$t('grid.point-code')}}</view>
<view class="filter_input_wraper">
<search-box v-model="val1" />
</view>
2025-05-23 15:38:21 +08:00
</view>
2025-06-13 18:03:52 +08:00
<view class="zd-row jccenter mgt20">
2025-06-16 16:41:29 +08:00
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !val1}" :disabled="val1 && type === '2' && disabled4" style="margin-right: 15px" @tap="_rawScrollDowm('2')">{{$t('button.upper-axis')}}</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !val1}" :disabled="val1 && type === '4' && disabled4" @tap="_rawScrollDowm('4')">{{$t('button.lower-axis')}}</button>
2025-06-13 18:03:52 +08:00
</view>
</view>
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label">{{$t('filter.mother-roll')}}</view>
<view class="zd-row">
<view class="zd-col-21 filter_input_wraper">
2025-06-16 14:05:52 +08:00
<search-box v-model="val2" @handleDel="handleDel" />
2025-06-13 18:03:52 +08:00
</view>
<button class="btn-search-icon" style="text-align: right;" size="mini" @tap="searchList"><uni-icons type="search" size="24" color="#272727"></uni-icons></button>
</view>
</view>
2025-05-23 15:38:21 +08:00
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
2025-06-06 16:05:31 +08:00
<th>{{$t('filter.state')}}</th>
<th class="th_2">{{$t('grid.mother-roll-number')}}</th>
<th>{{$t('grid.work-order-number')}}</th>
<th>{{$t('grid.machine-code')}}</th>
<th>{{$t('grid.product-code')}}</th>
<th>{{$t('grid.theoretical-length')}}</th>
<th>{{$t('grid.start-time')}}</th>
<th>{{$t('grid.end-time')}}</th>
<th>{{$t('grid.total-weight')}}</th>
<th>{{$t('grid.car-number')}}</th>
<th>{{$t('grid.production-area')}}</th>
<th>{{$t('grid.update-time')}}</th>
2025-05-23 15:38:21 +08:00
</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>
<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">
2025-06-13 18:03:52 +08:00
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled2" @tap="_confirmBlanking">{{$t('button.ready-to-go')}}</button>
2025-06-16 16:41:29 +08:00
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled3" @tap="_rawStart">{{$t('button.start-work-order')}}</button>
2025-06-06 16:05:31 +08:00
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="type === '1' && disabled4" @tap="_rawScrollDowm('1')">{{$t('button.roll-down')}}</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="type === '3' && disabled4" @tap="_rawScrollDowm('3')">{{$t('button.single-volume')}}</button>
2025-05-23 15:38:21 +08:00
</view>
<up-top ref="UT" :scrollTop="top"></up-top>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import UpTop from '@/components/upTop.vue'
2025-05-30 18:02:19 +08:00
import {queryRawFoilList, createOrder, confirmBlanking, rawStart, rawScrollDowm} from '@/utils/getData1.js'
2025-05-23 15:38:21 +08:00
export default {
components: {
NavBar,
SearchBox,
UpTop
},
data() {
return {
title: '',
top: 0,
2025-06-13 18:03:52 +08:00
val1: '',
val2: '',
2025-05-23 15:38:21 +08:00
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,
2025-05-30 18:02:19 +08:00
pageSize: 10,
type: ''
2025-05-23 15:38:21 +08:00
};
},
onLoad (options) {
this.title = options.title
},
onPageScroll(e) {
this.$refs.UT.topData(e.scrollTop)
},
methods: {
searchList () {
this.pkId = ''
this.pkObj = {}
this.totalCount = 0
this.dataList = []
this.pageNum = 1
this._queryRawFoilList()
},
2025-05-30 18:02:19 +08:00
// 查询列表
2025-05-23 15:38:21 +08:00
async _queryRawFoilList () {
2025-06-13 18:03:52 +08:00
let res = await queryRawFoilList(this.val1, this.val2, this.pageNum + '', this.pageSize + '')
2025-05-23 15:38:21 +08:00
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'
}
},
2025-05-30 18:02:19 +08:00
// 准备就绪
2025-05-23 15:38:21 +08:00
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
}
},
2025-05-30 18:02:19 +08:00
// 开始工单
async _rawStart () {
2025-05-23 15:38:21 +08:00
this.disabled3 = true
if (!this.pkId) {
this.disabled3 = false
return
}
try {
2025-05-30 18:02:19 +08:00
let res = await rawStart(this.pkObj)
2025-05-23 15:38:21 +08:00
this.disabled3 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
2025-05-30 18:02:19 +08:00
uni.showToast({
title: res.message,
icon: 'none'
})
2025-05-23 15:38:21 +08:00
} catch (e) {
this.disabled3 = false
}
},
2025-06-16 14:05:52 +08:00
// 正常下卷/单下卷/单上轴/单下轴
2025-05-30 18:02:19 +08:00
async _rawScrollDowm (type) {
2025-05-23 15:38:21 +08:00
this.disabled4 = true
2025-05-30 18:02:19 +08:00
this.type = type
2025-06-13 18:03:52 +08:00
if (!this.pkId && (type === '1' || type === '3')) {
this.disabled4 = false
this.type = ''
return
}
if (!this.val1 && (type === '2' || type === '4')) {
2025-05-23 15:38:21 +08:00
this.disabled4 = false
2025-05-30 18:02:19 +08:00
this.type = ''
2025-05-23 15:38:21 +08:00
return
}
try {
2025-06-13 18:03:52 +08:00
let res = await rawScrollDowm(this.pkObj, type, this.val1)
2025-05-23 15:38:21 +08:00
this.disabled4 = false
2025-05-30 18:02:19 +08:00
this.type = ''
2025-05-23 15:38:21 +08:00
this.pkId = ''
this.pkObj = {}
this.searchList()
2025-05-30 18:02:19 +08:00
uni.showToast({
title: res.message,
icon: 'none'
})
2025-05-23 15:38:21 +08:00
} catch (e) {
this.disabled4 = false
2025-05-30 18:02:19 +08:00
this.type = ''
2025-05-23 15:38:21 +08:00
}
},
toCheck (e) {
this.pkId = this.pkId === e.container_name ? '' : e.container_name
this.pkObj = this.pkId === e.container_name ? e : {}
2025-06-16 14:05:52 +08:00
},
handleDel () {
this.pkId = ''
this.pkObj = {}
this.totalCount = 0
this.dataList = []
this.pageNum = 1
2025-05-23 15:38:21 +08:00
}
}
}
</script>