Files
hht-ynhl-one-uni/pages/SecondPhase/production/SboProcess.vue
2025-05-30 18:02:19 +08:00

267 lines
7.4 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-row mgb10">
<view class="zd-col-18">
<button class="mgr20" size="mini" type="primary" :disabled="!pkId || disabled2" @tap="_confirmBlanking">准备就绪</button>
<button size="mini" type="primary" :disabled="!pkId || disabled3" @tap="_rawStart">开始工单</button>
</view>
<button class="btn-search-icon" size="mini" @tap="toggleSearchPopup"><uni-icons type="search" size="24" color="#272727"></uni-icons></button>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>状态</th>
<th class="th_2">母卷号</th>
<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>
<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">
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="type === '1' && disabled4" @tap="_rawScrollDowm('1')">正常下卷</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="type === '3' && disabled4" @tap="_rawScrollDowm('3')">单下卷</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="type === '2' && disabled4" @tap="_rawScrollDowm('2')">单上轴</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="type === '4' && disabled4" @tap="_rawScrollDowm('4')">单下轴</button>
</view>
<up-top ref="UT" :scrollTop="top"></up-top>
<SearchPopup
ref= "SearchPopup"
:conditions="conditions"
@clear="handleClear"
@search="searchList"
>
<view class="zd-row pdt26 mgb10 jcflexend">
<view class="zd-col-8">
<button size="mini" type="primary" :disabled="disabled1" @tap="_createOrder">新增工单</button>
</view>
</view>
</SearchPopup>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchPopup from '@/components/SearchPopup.vue'
import SearchBox from '@/components/SearchBox.vue'
import UpTop from '@/components/upTop.vue'
import {queryRawFoilList, createOrder, confirmBlanking, rawStart, rawScrollDowm} from '@/utils/getData1.js'
export default {
components: {
NavBar,
SearchPopup,
SearchBox,
UpTop
},
data() {
return {
title: '',
top: 0,
initialConditions: [
{ required: false, key: 'scan', label: '点位', value: ''},
{ required: false, key: 'scan', label: '类型', value: '' }
],
conditions: [
{ required: false, key: 'scan', label: '点位', value: ''},
{ required: false, key: 'scan', label: '类型', value: '' }
],
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,
type: ''
};
},
onLoad (options) {
this.title = options.title
},
onPageScroll(e) {
this.$refs.UT.topData(e.scrollTop)
},
methods: {
toggleSearchPopup() {
uni.setNavigationBarColor({
frontColor: '#000000', // 导航栏文字颜色,只能是 '#ffffff' 或 '#000000'
backgroundColor: '#ffffff', // 导航栏背景颜色
animation: {
duration: 300, // 动画持续时间(毫秒)
timingFunc: 'ease-in-out' // 动画效果
}
});
this.$nextTick(() => {
this.$refs.SearchPopup.init()
})
},
handleClear () {
this.conditions = [...this.initialConditions]
},
searchList () {
this.pkId = ''
this.pkObj = {}
this.totalCount = 0
this.dataList = []
this.pageNum = 1
this._queryRawFoilList()
},
// 查询列表
async _queryRawFoilList () {
let res = await queryRawFoilList(this.conditions[0].value, this.conditions[1].value, 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'
}
},
// 新增工单
async _createOrder () {
this.disabled1 = true
try {
let res = await createOrder(this.conditions[0].value, this.conditions[1].value)
this.disabled1 = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled1 = 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 _rawStart () {
this.disabled3 = true
if (!this.pkId) {
this.disabled3 = false
return
}
try {
let res = await rawStart(this.pkObj)
this.disabled3 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled3 = false
}
},
// 开始工单
async _rawScrollDowm (type) {
this.disabled4 = true
this.type = type
if (!this.pkId) {
this.disabled4 = false
this.type = ''
return
}
try {
let res = await rawScrollDowm(this.pkObj, type)
this.disabled4 = false
this.type = ''
this.pkId = ''
this.pkObj = {}
this.searchList()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled4 = false
this.type = ''
}
},
toCheck (e) {
this.pkId = this.pkId === e.container_name ? '' : e.container_name
this.pkObj = this.pkId === e.container_name ? e : {}
}
}
}
</script>