320 lines
9.2 KiB
Vue
320 lines
9.2 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('filter.area')}}</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index" :placeholder="$t('uni.dataSelect.placeholder')" :emptyTips="$t('uni.dataSelect.emptyTips')" :localdata="options" @change="selectChange"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item is-required">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">{{$t('filter.point')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val1"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">{{$t('grid.mother-roll-number')}}</view>
|
|
<view class="zd-row">
|
|
<view class="zd-col-21 filter_input_wraper">
|
|
<search-box
|
|
v-model="val2"
|
|
/>
|
|
</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('grid.number')}}</th>
|
|
<th class="th_2">{{$t('grid.mother-roll-number')}}</th>
|
|
<th>{{$t('grid.sub-roll-number')}}</th>
|
|
<th>{{$t('grid.jtcode')}}</th>
|
|
<th>{{$t('grid.split-group')}}</th>
|
|
<th>{{$t('grid.production-sequence')}}</th>
|
|
<th>{{$t('grid.date-of-manufacture')}}</th>
|
|
<th>{{$t('grid.order-number')}}</th>
|
|
<th>{{$t('grid.paper-FRP-tube')}}</th>
|
|
<th>{{$t('grid.paper-tube-material-code')}}</th>
|
|
<th>{{$t('grid.paper-tube-material-description')}}</th>
|
|
<th>{{$t('grid.paper-tube-specifications')}}</th>
|
|
<th>{{$t('grid.FRP-pipe-material-code')}}</th>
|
|
<th>{{$t('grid.FRP-pipe-material-description')}}</th>
|
|
<th>{{$t('grid.FRP-pipe-specifications')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.container_name === pkId}">
|
|
<td>{{Number(i) + 1}}</td>
|
|
<td class="td_2">{{e.source_container_name}}</td>
|
|
<td>{{e.container_name}}</td>
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.split_group}}</td>
|
|
<td>{{e.manufacture_sort}}</td>
|
|
<td>{{e.manufacture_date}}</td>
|
|
<td>{{e.mfg_order_name}}</td>
|
|
<td>{{e.paper_tube_or_FRP}}</td>
|
|
<td>{{e.paper_tube_material}}</td>
|
|
<td>{{e.paper_tube_description}}</td>
|
|
<td>{{e.paper_tube_model}}</td>
|
|
<td>{{e.FRP_material}}</td>
|
|
<td>{{e.FRP_description}}</td>
|
|
<td>{{e.FRP_model}}</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-6 btn-submit btn-success" :class="{'btn-info': !val1}" :disabled="disabled2" @tap="_feedingVehicleReturn('2')">{{$t('button.full-shaft-return')}}</button>
|
|
<button class="zd-col-6 btn-submit btn-success" :class="{'btn-info': !val1}" :disabled="disabled2" @tap="_feedingVehicleReturn('1')">{{$t('button.empty-shaft-return')}}</button>
|
|
<button class="zd-col-6 btn-submit btn-success" @tap="handleSure">{{$t('button.manual-call')}}</button>
|
|
<button class="zd-col-6 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled" @tap="toSure">{{$t('button.call')}}</button>
|
|
</view>
|
|
<view class="msg_wrapper h-50" :class="active ? 'popshow' : 'pophide'">
|
|
<view class="pop-line"></view>
|
|
<view class="msg_content">
|
|
<view class="zd_wrapper zd_wrapper-1">
|
|
<view class="filter_item filter_item-1 is-required">
|
|
<view class="filter_label">{{$t('filter.starting-point')}}</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val3"
|
|
@handleChange="handleChange1"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item filter_item-1 is-required">
|
|
<view class="filter_label">{{$t('grid.mother-roll-number')}}</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val4"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item filter_item-1 is-required">
|
|
<view class="filter_label">{{$t('filter.end')}}</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val5"
|
|
/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submitbar">
|
|
<button class="zd-col-11 btn-submit btn-default letter-30" @tap="cancleModal">{{$t('button.cancel')}}</button>
|
|
<button class="zd-col-11 btn-submit btn-success letter-30" @tap="modalToSure">{{$t('button.confirm')}}</button>
|
|
</view>
|
|
</view>
|
|
<view v-if="active" class="msg_mask"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {queryProductArea, feedingQueryMaterialInfo, feedingConfirm, feedingQueryPoint, feedingHandleConfirm, feedingVehicleReturn} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
val1: '',
|
|
val2: '',
|
|
options: [],
|
|
index: '',
|
|
dataList: [],
|
|
disabled: false,
|
|
pkId: '',
|
|
pkObj: {},
|
|
reload: false,
|
|
status: 'more',
|
|
contentText: {
|
|
contentdown: this.$t('uni-load-more.contentdown'),
|
|
contentrefresh: this.$t('uni-load-more.contentrefresh'),
|
|
contentnomore: this.$t('uni-load-more.contentnomore')
|
|
},
|
|
totalCount: 0,
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
active: false,
|
|
val3: '',
|
|
val4: '',
|
|
val5: '',
|
|
disabled1: false,
|
|
disabled2: false
|
|
};
|
|
},
|
|
created () {
|
|
this._queryProductArea()
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
methods: {
|
|
searchList () {
|
|
this.dataList = []
|
|
this.pageNum = 1
|
|
this._feedingQueryMaterialInfo()
|
|
},
|
|
/** 选择器 */
|
|
selectChange(e) {
|
|
this.index = e
|
|
},
|
|
/** 生产区域下拉框查询 */
|
|
async _queryProductArea () {
|
|
let res = await queryProductArea()
|
|
this.options = [...res.data]
|
|
},
|
|
/** 初始化查询 */
|
|
async _feedingQueryMaterialInfo () {
|
|
let res = await feedingQueryMaterialInfo(this.index, 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._feedingQueryMaterialInfo()
|
|
}, 1000)
|
|
} else { //停止加载
|
|
this.status = 'noMore'
|
|
}
|
|
},
|
|
/** 呼叫 */
|
|
async toSure () {
|
|
this.disabled = true
|
|
if (!this.pkId) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await feedingConfirm(this.pkObj)
|
|
this.disabled = false
|
|
this.pkId = ''
|
|
this.searchList()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
toCheck (e) {
|
|
this.pkId = this.pkId === e.container_name ? '' : e.container_name
|
|
this.pkObj = this.pkId === e.container_name ? e : {}
|
|
},
|
|
handleSure () {
|
|
this.active = true
|
|
},
|
|
cancleModal () {
|
|
this.active = false
|
|
this.val3 = ''
|
|
this.val4 = ''
|
|
this.val5 = ''
|
|
},
|
|
handleChange1 (e) {
|
|
this._feedingQueryPoint(e)
|
|
},
|
|
/** 扫码起点带出母卷 */
|
|
async _feedingQueryPoint (e) {
|
|
let res = await feedingQueryPoint(e)
|
|
this.val4 = res.content.container_name
|
|
},
|
|
/** 人工呼叫 */
|
|
async modalToSure () {
|
|
this.disabled1 = true
|
|
if (!this.val3) {
|
|
this.disabled1 = false
|
|
return
|
|
}
|
|
if (!this.val4) {
|
|
this.disabled1 = false
|
|
return
|
|
}
|
|
if (!this.val5) {
|
|
this.disabled1 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await feedingHandleConfirm(this.val3, this.val4, this.val5)
|
|
this.disabled1 = false
|
|
this.active = false
|
|
this.val3 = ''
|
|
this.val4 = ''
|
|
this.val5 = ''
|
|
this.pkId = ''
|
|
this.searchList()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled1 = false
|
|
}
|
|
},
|
|
/** 空轴送回 */
|
|
async _feedingVehicleReturn (type) {
|
|
this.disabled2 = true
|
|
if (!this.val1) {
|
|
this.disabled2 = false
|
|
uni.showToast({
|
|
title: '点位不能为空',
|
|
icon: 'none'
|
|
})
|
|
return
|
|
}
|
|
try {
|
|
let res = await feedingVehicleReturn(this.val1, type)
|
|
this.disabled2 = false
|
|
this.active = false
|
|
this.val1 = ''
|
|
this.pkId = ''
|
|
this.searchList()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled2 = false
|
|
}
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.zd-col-6
|
|
width 23.5%
|
|
</style>
|