分切上料
This commit is contained in:
@@ -200,6 +200,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
,{
|
||||||
|
"path" : "pages/ProductManage/SlittingFeeding",
|
||||||
|
"style": {
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
// "pageOrientation": "landscape",
|
// "pageOrientation": "landscape",
|
||||||
|
|||||||
147
pages/ProductManage/SlittingFeeding.vue
Normal file
147
pages/ProductManage/SlittingFeeding.vue
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
<template>
|
||||||
|
<view class="zd_container">
|
||||||
|
<nav-bar title="分切上料"></nav-bar>
|
||||||
|
<view class="zd_content">
|
||||||
|
<view class="zd_wrapper">
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label">区域</view>
|
||||||
|
<view class="filter_input_wraper">
|
||||||
|
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
||||||
|
</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="val1"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="zd_wrapper grid-wraper">
|
||||||
|
<view class="slide_new">
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>序号</th>
|
||||||
|
<th>订单号</th>
|
||||||
|
<th>子卷号</th>
|
||||||
|
<th>机台编号</th>
|
||||||
|
<th>分切组</th>
|
||||||
|
<th>生产顺序</th>
|
||||||
|
<th>生产日期</th>
|
||||||
|
<th>纸筒/FRP管</th>
|
||||||
|
<th>纸筒物料编码</th>
|
||||||
|
<th>纸筒物料描述</th>
|
||||||
|
<th>纸筒规格</th>
|
||||||
|
<th>FRP管物料编码</th>
|
||||||
|
<th>FRP管物料描述</th>
|
||||||
|
<th>FRP管规格</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': mfg_order_name === pkId}">
|
||||||
|
<td>{{Number(i) + 1}}</td>
|
||||||
|
<td>{{e.mfg_order_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.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>
|
||||||
|
</view>
|
||||||
|
<view class="submit-bar">
|
||||||
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="toSure">呼叫</button>
|
||||||
|
<button class="submit-button" @tap="_feedingQueryMaterialInfo">查询</button>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import NavBar from '@/components/NavBar.vue'
|
||||||
|
import SearchBox from '@/components/SearchBox.vue'
|
||||||
|
import {queryProductArea, feedingQueryMaterialInfo, feedingConfirm} from '@/utils/getData2.js'
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
NavBar,
|
||||||
|
SearchBox
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
val1: '',
|
||||||
|
options: [],
|
||||||
|
index: '',
|
||||||
|
dataList: [],
|
||||||
|
disabled: false,
|
||||||
|
pkId: '',
|
||||||
|
pkObj: {}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created () {
|
||||||
|
this._queryProductArea()
|
||||||
|
this._feedingQueryMaterialInfo()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 选择器 */
|
||||||
|
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.dataList = [...res.data]
|
||||||
|
},
|
||||||
|
/** 确认 */
|
||||||
|
async toSure () {
|
||||||
|
this.disabled = true
|
||||||
|
if (!this.pkId) {
|
||||||
|
this.disabled = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
let res = await feedingConfirm([this.pkObj])
|
||||||
|
this.disabled = false
|
||||||
|
this._feedingQueryMaterialInfo()
|
||||||
|
uni.showToast({
|
||||||
|
title: res.message,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
} catch (e) {
|
||||||
|
this.disabled = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
toCheck (e) {
|
||||||
|
this.pkId = this.pkId === e.mfg_order_name ? '' : e.mfg_order_name
|
||||||
|
this.pkObj = this.pkId === e.mfg_order_name ? e : {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus">
|
||||||
|
.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
|
||||||
|
left 89rpx
|
||||||
|
z-index 102
|
||||||
|
box-shadow 1px 0 2px rgba(0,0,0,.12)
|
||||||
|
</style>
|
||||||
@@ -166,6 +166,7 @@
|
|||||||
this.disabled = false
|
this.disabled = false
|
||||||
this.pkId = ''
|
this.pkId = ''
|
||||||
this.pkObj = {}
|
this.pkObj = {}
|
||||||
|
this.dataList = []
|
||||||
this._coolIOQuery()
|
this._coolIOQuery()
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
|
|||||||
@@ -40,10 +40,11 @@ export const authority = () => {
|
|||||||
{menu_id: '2', name: '半成品出库', path: '/pages/WarehouseManage/SemifinishedOutStore'},
|
{menu_id: '2', name: '半成品出库', path: '/pages/WarehouseManage/SemifinishedOutStore'},
|
||||||
]},
|
]},
|
||||||
{menu_id: '3', path: 'RF03', name: '分切管理', sonTree: [
|
{menu_id: '3', path: 'RF03', name: '分切管理', sonTree: [
|
||||||
{menu_id: '1', name: '子卷套管', path: '/pages/ProductManage/ZjCasing'},
|
{menu_id: '1', name: '分切上料', path: '/pages/ProductManage/SlittingFeeding'},
|
||||||
{menu_id: '2', name: '子卷配送', path: '/pages/ProductManage/ZjDelivery'},
|
{menu_id: '2', name: '子卷套管', path: '/pages/ProductManage/ZjCasing'},
|
||||||
{menu_id: '3', name: '子卷进站', path: '/pages/ProductManage/ZjInStore'},
|
{menu_id: '3', name: '子卷配送', path: '/pages/ProductManage/ZjDelivery'},
|
||||||
{menu_id: '4', name: '子卷出站', path: '/pages/ProductManage/ZjOutStore'},
|
{menu_id: '4', name: '子卷进站', path: '/pages/ProductManage/ZjInStore'},
|
||||||
|
{menu_id: '5', name: '子卷出站', path: '/pages/ProductManage/ZjOutStore'},
|
||||||
]},
|
]},
|
||||||
{menu_id: '4', path: 'RF04', name: '点位管理', sonTree: [
|
{menu_id: '4', path: 'RF04', name: '点位管理', sonTree: [
|
||||||
{menu_id: '1', name: '点位管理', path: '/pages/ProductManage/PointManage'},
|
{menu_id: '1', name: '点位管理', path: '/pages/ProductManage/PointManage'},
|
||||||
@@ -336,3 +337,22 @@ export const virtualprintType = (url) => request1({
|
|||||||
url: `${url}/` + 'api/pda/virtual/printType',
|
url: `${url}/` + 'api/pda/virtual/printType',
|
||||||
data: {}
|
data: {}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分切上料
|
||||||
|
*/
|
||||||
|
// 1.1分切计划初始化查询
|
||||||
|
export const feedingQueryMaterialInfo = (area, code) => request({
|
||||||
|
url:'api/pda/feeding/queryMaterialInfo',
|
||||||
|
data: {
|
||||||
|
product_area: area,
|
||||||
|
device_code: code
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// 1.2呼叫
|
||||||
|
export const feedingConfirm = (row) => request({
|
||||||
|
url:'api/pda/feeding/confirm',
|
||||||
|
data: {
|
||||||
|
cut_rows: row
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user