From ff2851a0b64fdcf2ba8e987b65a08def7e1aec95 Mon Sep 17 00:00:00 2001 From: A0010407 Date: Mon, 2 Sep 2024 16:25:44 +0800 Subject: [PATCH] =?UTF-8?q?2024-09-02=20MES-=E4=B8=89=E4=B8=AA=E4=B8=8A?= =?UTF-8?q?=E4=BD=8D=E6=9C=BA=E6=8A=A5=E8=A1=A8-=E4=BA=A7=E7=BA=BF?= =?UTF-8?q?=E7=BC=96=E7=A0=81=E6=94=B9=E4=B8=BA=E4=BA=A7=E7=BA=BF=E5=90=8D?= =?UTF-8?q?=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/mes/firstInspection/index.vue | 5 ++++- src/views/mes/pointInspection/index.vue | 7 +++++-- src/views/mes/selfMutualInspection/index.vue | 5 ++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/views/mes/firstInspection/index.vue b/src/views/mes/firstInspection/index.vue index b6d2e9e8..3e8d44ce 100644 --- a/src/views/mes/firstInspection/index.vue +++ b/src/views/mes/firstInspection/index.vue @@ -180,7 +180,7 @@
-
生产产线: {{ headerParameters.lineCode }}
+
生产产线: {{ headerParameters.lineName }}

@@ -327,6 +327,7 @@ export default { productionWorkshop: null, //生产车间 reportName: 'ConversionReportRight', //表类型 lineCode: null, //生产产线编码 + lineName: null, //生产产线名称 checkPeople: null, //检查人 productName: null, //产品名称 checkDate: null, //检查日期 @@ -416,6 +417,7 @@ export default { resetQuery() { (this.headerParameters.productionWorkshop = null), //生产车间 (this.headerParameters.lineCode = null), //生产产线 + (this.headerParameters.lineName = null), //生产产线 (this.headerParameters.checkPeople = null), //检查人 (this.headerParameters.productName = null), //产品名称 (this.headerParameters.checkDate = null), //检查日期 @@ -437,6 +439,7 @@ export default { this.headerParameters.productName = response.productName; //产品名称 this.headerParameters.remark = response.remark; //备注 this.headerParameters.bz = response.bz; //异常处理 + this.headerParameters.lineName = response.lineName; //this.headerParameters.checkDate = response.checkDate 检查日期 //生产产线 }); diff --git a/src/views/mes/pointInspection/index.vue b/src/views/mes/pointInspection/index.vue index b7d6a0d0..606da1f2 100644 --- a/src/views/mes/pointInspection/index.vue +++ b/src/views/mes/pointInspection/index.vue @@ -80,7 +80,7 @@ 车间 黑蚊香 - 产线:{{ headerParameters.lineCode }} + 产线:{{ headerParameters.lineName }} 车间 黑蚊香 - 产线:{{ headerParameters.lineCode }} + 产线:{{ headerParameters.lineName }}
- 生产产线: {{ headerParameters.lineCode }} + 生产产线: {{ headerParameters.lineName }}

@@ -275,6 +275,7 @@ export default { reportName: "ConversionReport", //表类型 productionWorkshop: null, //生产车间 lineCode: null, //生产产线编码 + lineName: null, //生产产线名称 checkPeople: null, //检查人 productName: null, //产品名称 checkDate: null, //检查日期 @@ -367,6 +368,7 @@ export default { resetQuery() { (this.headerParameters.productionWorkshop = null), //生产车间 (this.headerParameters.lineCode = null), //生产产线 + (this.headerParameters.lineName = null), //生产产线 (this.headerParameters.checkPeople = null), //检查人 (this.headerParameters.productName = null), //产品名称 (this.headerParameters.checkDate = null), //检查日期 @@ -390,6 +392,7 @@ export default { this.headerParameters.productName = response.productName; //产品名称 this.headerParameters.remark = response.remark; //备注 this.headerParameters.bz = response.bz; //异常处理 + this.headerParameters.lineName = response.lineName; //this.headerParameters.checkDate = response.checkDate 检查日期 //生产产线 });