From 50aed63ff2436a50fd72e23a665a3da84ca7d5b5 Mon Sep 17 00:00:00 2001 From: xiangxy Date: Tue, 13 Dec 2022 17:25:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E5=88=87=E4=B8=8A=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/ProductManage/SlittingFeeding.vue | 19 ++++++++++++++++--- utils/getData2.js | 5 +++-- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/pages/ProductManage/SlittingFeeding.vue b/pages/ProductManage/SlittingFeeding.vue index 56637c3..c804e0e 100644 --- a/pages/ProductManage/SlittingFeeding.vue +++ b/pages/ProductManage/SlittingFeeding.vue @@ -19,6 +19,16 @@ /> + + + 母卷号 + + + + + @@ -26,12 +36,13 @@ 序号 - 订单号 + 母卷号 子卷号 机台编号 分切组 生产顺序 生产日期 + 订单号 纸筒/FRP管 纸筒物料编码 纸筒物料描述 @@ -44,12 +55,13 @@ {{Number(i) + 1}} - {{e.mfg_order_name}} + {{e.source_container_name}} {{e.container_name}} {{e.point_code}} {{e.split_group}} {{e.manufacture_sort}} {{e.manufacture_date}} + {{e.mfg_order_name}} {{e.paper_tube_or_FRP}} {{e.paper_tube_material}} {{e.paper_tube_description}} @@ -83,6 +95,7 @@ data() { return { val1: '', + val2: '', options: [], index: '', dataList: [], @@ -121,7 +134,7 @@ }, /** 初始化查询 */ async _feedingQueryMaterialInfo () { - let res = await feedingQueryMaterialInfo(this.index, this.val1, this.pageNum + '', this.pageSize + '') + 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 diff --git a/utils/getData2.js b/utils/getData2.js index 5620f00..c664f2d 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -345,11 +345,12 @@ export const virtualprintType = (url) => request1({ * 分切上料 */ // 1.1分切计划初始化查询 -export const feedingQueryMaterialInfo = (area, code, page, size) => request({ +export const feedingQueryMaterialInfo = (area, dcode, sname, page, size) => request({ url:'api/pda/feeding/queryMaterialInfo', data: { product_area: area, - point_code: code, + device_code: dcode, + source_container_name: sname, page: page, size: size }