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 检查日期 //生产产线 });