|
|
|
@ -859,6 +859,24 @@ export default { |
|
|
|
fixed: '', |
|
|
|
columnWidth: 120, |
|
|
|
}, |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 401006, |
|
|
|
serialNumber: '401006Table1CQualityEngineer7', |
|
|
|
tableId: "401006Table1", |
|
|
|
tableName: "项目信息待上传文件表", |
|
|
|
columnProp: 'cQualityEngineer7Name', |
|
|
|
headerAlign: "center", |
|
|
|
align: "left", |
|
|
|
columnLabel: '前道工程师', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
columnSortable: false, |
|
|
|
sortLv: 0, |
|
|
|
status: true, |
|
|
|
fixed: '', |
|
|
|
columnWidth: 120, |
|
|
|
}, |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 401006, |
|
|
|
@ -1751,6 +1769,9 @@ export default { |
|
|
|
if (item.ipqcHardTag !== null && item.ipqcHardTag !== '') { |
|
|
|
item.ipqcHardTagName = item.ipqcHardTag.split('-')[1]; |
|
|
|
} |
|
|
|
if (item.cQualityEngineer7 !== null && item.cQualityEngineer7 !== '') { |
|
|
|
item.cQualityEngineer7Name = item.cQualityEngineer7.split('-')[1]; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
for (let i = 0; i < this.exportList.length; i++) { |
|
|
|
@ -1788,6 +1809,10 @@ export default { |
|
|
|
if (this.exportList[i].ipqcHardTag !== null && this.exportList[i].ipqcHardTag !== '') { |
|
|
|
this.exportList[i].projectLeader = this.exportList[i].ipqcHardTag.split("-")[1]; |
|
|
|
} |
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'R016') { |
|
|
|
if (this.exportList[i].cQualityEngineer7 !== null && this.exportList[i].cQualityEngineer7 !== '') { |
|
|
|
this.exportList[i].projectLeader = this.exportList[i].cQualityEngineer7.split("-")[1]; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
@ -1862,6 +1887,11 @@ export default { |
|
|
|
} else { |
|
|
|
item.ipqcHardTagName = item.ipqcHardTag.split('-')[1] |
|
|
|
} |
|
|
|
if (item.cQualityEngineer7 === null || item.cQualityEngineer7 === ''){ |
|
|
|
item.cQualityEngineer7Name = '' |
|
|
|
} else { |
|
|
|
item.cQualityEngineer7Name = item.cQualityEngineer7.split('-')[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
for (let i = 0; i < this.dataList.length; i++) { |
|
|
|
if (this.dataList[i].responsibleDepartment === 'R001'){ |
|
|
|
@ -1908,6 +1938,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.searchData.projectLeader !== '' && this.searchData.projectLeader !== null){ |
|
|
|
@ -1957,6 +1993,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
this.dataList = this.dataList.filter(item => item.projectLeader === this.searchData.projectLeader); |
|
|
|
@ -2009,6 +2051,11 @@ export default { |
|
|
|
} else { |
|
|
|
item.ipqcHardTagName = item.ipqcHardTag.split('-')[1] |
|
|
|
} |
|
|
|
if (item.cQualityEngineer7 === null || item.cQualityEngineer7 === ''){ |
|
|
|
item.cQualityEngineer7Name = '' |
|
|
|
} else { |
|
|
|
item.cQualityEngineer7Name = item.cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
for (let i = 0; i < this.dataList.length; i++) { |
|
|
|
if (this.dataList[i].responsibleDepartment === 'R001'){ |
|
|
|
@ -2055,6 +2102,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016') { |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === '') { |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.searchData.projectLeader !== '' && this.searchData.projectLeader !== null){ |
|
|
|
@ -2104,6 +2157,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
this.dataList = this.dataList.filter(item => item.projectLeader === this.searchData.projectLeader); |
|
|
|
@ -2166,6 +2225,11 @@ export default { |
|
|
|
} else { |
|
|
|
item.ipqcHardTagName = item.ipqcHardTag.split('-')[1] |
|
|
|
} |
|
|
|
if (item.cQualityEngineer7 === null || item.cQualityEngineer7 === ''){ |
|
|
|
item.cQualityEngineer7Name = '' |
|
|
|
} else { |
|
|
|
item.cQualityEngineer7Name = item.cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
for (let i = 0; i < this.dataList.length; i++) { |
|
|
|
if (this.dataList[i].responsibleDepartment === 'R001') { |
|
|
|
@ -2212,6 +2276,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.searchData.projectLeader !== '' && this.searchData.projectLeader !== null) { |
|
|
|
@ -2260,6 +2330,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if (this.dataList[i].responsibleDepartment === 'R016') { |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === '') { |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
this.dataList = this.dataList.filter(item => item.projectLeader === this.searchData.projectLeader); |
|
|
|
@ -2330,6 +2406,11 @@ export default { |
|
|
|
} else { |
|
|
|
item.ipqcHardTagName = item.ipqcHardTag.split('-')[1] |
|
|
|
} |
|
|
|
if (item.cQualityEngineer7 === null || item.cQualityEngineer7 === ''){ |
|
|
|
item.cQualityEngineer7Name = '' |
|
|
|
} else { |
|
|
|
item.cQualityEngineer7Name = item.cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
for (let i = 0; i < this.dataList.length; i++) { |
|
|
|
if (this.dataList[i].responsibleDepartment === 'R001'){ |
|
|
|
@ -2376,6 +2457,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.searchData.projectLeader !== '' && this.searchData.projectLeader !== null){ |
|
|
|
@ -2425,6 +2512,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
this.dataList = this.dataList.filter(item => item.projectLeader === this.searchData.projectLeader); |
|
|
|
@ -2477,6 +2570,11 @@ export default { |
|
|
|
} else { |
|
|
|
item.ipqcHardTagName = item.ipqcHardTag.split('-')[1] |
|
|
|
} |
|
|
|
if (item.cQualityEngineer7 === null || item.cQualityEngineer7 === ''){ |
|
|
|
item.cQualityEngineer7Name = '' |
|
|
|
} else { |
|
|
|
item.cQualityEngineer7Name = item.cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
for (let i = 0; i < this.dataList.length; i++) { |
|
|
|
if (this.dataList[i].responsibleDepartment === 'R001'){ |
|
|
|
@ -2523,6 +2621,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016') { |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === '') { |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.searchData.projectLeader !== '' && this.searchData.projectLeader !== null){ |
|
|
|
@ -2572,6 +2676,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
this.dataList = this.dataList.filter(item => item.projectLeader === this.searchData.projectLeader); |
|
|
|
@ -2634,6 +2744,11 @@ export default { |
|
|
|
} else { |
|
|
|
item.ipqcHardTagName = item.ipqcHardTag.split('-')[1] |
|
|
|
} |
|
|
|
if (item.cQualityEngineer7 === null || item.cQualityEngineer7 === ''){ |
|
|
|
item.cQualityEngineer7Name = '' |
|
|
|
} else { |
|
|
|
item.cQualityEngineer7Name = item.cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
for (let i = 0; i < this.dataList.length; i++) { |
|
|
|
if (this.dataList[i].responsibleDepartment === 'R001') { |
|
|
|
@ -2680,6 +2795,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.searchData.projectLeader !== '' && this.searchData.projectLeader !== null){ |
|
|
|
@ -2729,6 +2850,12 @@ export default { |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(this.dataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (this.dataList[i].cQualityEngineer7 === null || this.dataList[i].cQualityEngineer7 === ''){ |
|
|
|
this.dataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
this.dataList[i].projectLeader = this.dataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
this.dataList = this.dataList.filter(item => item.projectLeader === this.searchData.projectLeader); |
|
|
|
@ -2805,6 +2932,12 @@ export default { |
|
|
|
} else { |
|
|
|
allPersonnelInfoDataList[i].projectLeader = allPersonnelInfoDataList[i].ipqcHardTag.split("-")[1] |
|
|
|
} |
|
|
|
} else if(allPersonnelInfoDataList[i].responsibleDepartment === 'R016'){ |
|
|
|
if (allPersonnelInfoDataList[i].cQualityEngineer7 === null || allPersonnelInfoDataList[i].cQualityEngineer7 === ''){ |
|
|
|
allPersonnelInfoDataList[i].projectLeader = '' |
|
|
|
} else { |
|
|
|
allPersonnelInfoDataList[i].projectLeader = allPersonnelInfoDataList[i].cQualityEngineer7.split("-")[1] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|