248 lines
7.1 KiB
Vue
248 lines
7.1 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_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>
|
|
</view>
|
|
<view class="zd-row jccenter mgt20">
|
|
<view class="mgt10">
|
|
<button type="primary" size="mini" :disabled="val1 && type === '2' && disabled4" style="margin-right: 15px" @tap="_rawScrollDowm('2')">{{$t('button.upper-axis')}}</button>
|
|
<button type="primary" size="mini" :disabled="val1 && type === '4' && disabled4" @tap="_rawScrollDowm('4')">{{$t('button.lower-axis')}}</button>
|
|
</view>
|
|
</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">
|
|
<search-box v-model="val2" @handleDel="handleDel" />
|
|
</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>
|
|
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<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>
|
|
</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="disabled2" @tap="_confirmBlanking">{{$t('button.ready-to-go')}}</button>
|
|
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled3" @tap="_rawStart">{{$t('button.roll-down')}}</button>
|
|
<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>
|
|
</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'
|
|
import {queryRawFoilList, createOrder, confirmBlanking, rawStart, rawScrollDowm} from '@/utils/getData1.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox,
|
|
UpTop
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
top: 0,
|
|
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,
|
|
type: ''
|
|
};
|
|
},
|
|
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()
|
|
},
|
|
// 查询列表
|
|
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'
|
|
}
|
|
},
|
|
// 准备就绪
|
|
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 && (type === '1' || type === '3')) {
|
|
this.disabled4 = false
|
|
this.type = ''
|
|
return
|
|
}
|
|
if (!this.val1 && (type === '2' || type === '4')) {
|
|
this.disabled4 = false
|
|
this.type = ''
|
|
return
|
|
}
|
|
try {
|
|
let res = await rawScrollDowm(this.pkObj, type, this.val1)
|
|
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 : {}
|
|
},
|
|
handleDel () {
|
|
this.pkId = ''
|
|
this.pkObj = {}
|
|
this.totalCount = 0
|
|
this.dataList = []
|
|
this.pageNum = 1
|
|
}
|
|
}
|
|
}
|
|
</script> |