|
|
|
@ -80,7 +80,7 @@
|
|
|
|
|
<tr>
|
|
|
|
|
<th rowspan="2" style="width: 50px">车间</th>
|
|
|
|
|
<th rowspan="2" style="width: 120px">黑蚊香</th>
|
|
|
|
|
<th style="width: 250px">产线:{{ headerParameters.lineCode }}</th>
|
|
|
|
|
<th style="width: 250px">产线:{{ headerParameters.lineName }}</th>
|
|
|
|
|
<th
|
|
|
|
|
th
|
|
|
|
|
v-for="item in checkBoxData[0]"
|
|
|
|
@ -204,7 +204,7 @@
|
|
|
|
|
<th rowspan="2" style="width: 50px">车间</th>
|
|
|
|
|
<th rowspan="2" style="width: 120px">黑蚊香</th>
|
|
|
|
|
<th style="width: 250px">
|
|
|
|
|
产线:{{ headerParameters.lineCode }}
|
|
|
|
|
产线:{{ headerParameters.lineName }}
|
|
|
|
|
</th>
|
|
|
|
|
<th
|
|
|
|
|
th
|
|
|
|
@ -350,6 +350,7 @@ export default {
|
|
|
|
|
reportName: "ConversionReport", //表类型
|
|
|
|
|
productionWorkshop: null, //生产车间
|
|
|
|
|
lineCode: null, //生产产线编码
|
|
|
|
|
lineName: null, //生产产线名称
|
|
|
|
|
createBy: null, //检查人
|
|
|
|
|
productName: null, //产品名称
|
|
|
|
|
checkDate: null, //检查日期
|
|
|
|
@ -442,6 +443,7 @@ export default {
|
|
|
|
|
resetQuery() {
|
|
|
|
|
(this.headerParameters.productionWorkshop = null), //生产车间
|
|
|
|
|
(this.headerParameters.lineCode = null), //生产产线
|
|
|
|
|
(this.headerParameters.lineName = null), //生产产线
|
|
|
|
|
(this.headerParameters.createBy = null), //检查人
|
|
|
|
|
(this.headerParameters.productName = null), //产品名称
|
|
|
|
|
(this.headerParameters.checkDate = null), //检查日期
|
|
|
|
@ -500,6 +502,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 检查日期
|
|
|
|
|
//生产产线
|
|
|
|
|
});
|
|
|
|
|