|
|
|
|
@ -250,7 +250,7 @@ |
|
|
|
|
:data="form2.tableData2" |
|
|
|
|
style="width: 100%" |
|
|
|
|
@selection-change="handleSelectionChange2" |
|
|
|
|
class="tableHeight" |
|
|
|
|
class="tableHeight" |
|
|
|
|
> |
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column> |
|
|
|
|
<el-table-column prop="date" label="工序号"> |
|
|
|
|
@ -368,7 +368,7 @@ |
|
|
|
|
:data="form3.tableData3" |
|
|
|
|
style="width: 100%" |
|
|
|
|
@selection-change="handleSelectionChange3" |
|
|
|
|
class="tableHeight" |
|
|
|
|
class="tableHeight" |
|
|
|
|
> |
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column> |
|
|
|
|
<el-table-column prop="trialNo" label="工序号"> |
|
|
|
|
@ -441,7 +441,7 @@ |
|
|
|
|
:data="form4.tableData4" |
|
|
|
|
style="width: 100%" |
|
|
|
|
@selection-change="handleSelectionChange4" |
|
|
|
|
class="tableHeight" |
|
|
|
|
class="tableHeight" |
|
|
|
|
> |
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column> |
|
|
|
|
<el-table-column prop="date" label="工序号"> |
|
|
|
|
@ -797,7 +797,7 @@ export default { |
|
|
|
|
processInfo: { |
|
|
|
|
id: null, // 新增时通常设为 null |
|
|
|
|
processNo: this.getProcessNo(this.form1.tableData1), // 自动生成工序号 |
|
|
|
|
ppsId: item.ppsId+'', // 假设模板中有 ppsId 或 id |
|
|
|
|
ppsId: item.ppsId + '', // 假设模板中有 ppsId 或 id |
|
|
|
|
processCode: item.processCode, // 假设模板中有 processCode 或 id |
|
|
|
|
processName: item.processName, |
|
|
|
|
craftCode: item.craftCode, |
|
|
|
|
@ -806,7 +806,7 @@ export default { |
|
|
|
|
proHours: item.proHours || '', |
|
|
|
|
setoutHours: item.setoutHours || '', |
|
|
|
|
isMain: item.isMain || '0', |
|
|
|
|
caId: item.caId+'', |
|
|
|
|
caId: item.caId + '', |
|
|
|
|
}, |
|
|
|
|
// 其他字段按需补充... |
|
|
|
|
}; |
|
|
|
|
@ -1106,7 +1106,6 @@ export default { |
|
|
|
|
|
|
|
|
|
if (this.treeLeave == 2) { |
|
|
|
|
this.form1.tableData1.forEach(item => { |
|
|
|
|
|
|
|
|
|
newArr.push({ |
|
|
|
|
...item.processInfo, |
|
|
|
|
processProjectVOList: item.projectList || [], |
|
|
|
|
|