|
|
@ -4114,6 +4114,18 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
if (this.exportList[i].cQualityEngineer7 !== null && this.exportList[i].cQualityEngineer7 !== '') { |
|
|
if (this.exportList[i].cQualityEngineer7 !== null && this.exportList[i].cQualityEngineer7 !== '') { |
|
|
this.exportList[i].projectLeader = this.exportList[i].cQualityEngineer7.split("-")[1]; |
|
|
this.exportList[i].projectLeader = this.exportList[i].cQualityEngineer7.split("-")[1]; |
|
|
} |
|
|
} |
|
|
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'QC' || this.exportList[i].responsibleDepartment === 'R018') { |
|
|
|
|
|
if (this.exportList[i].qcEngineer !== null && this.exportList[i].qcEngineer !== '') { |
|
|
|
|
|
this.exportList[i].projectLeader = this.exportList[i].qcEngineer.split("-")[1]; |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'PE' || this.exportList[i].responsibleDepartment === 'R019') { |
|
|
|
|
|
if (this.exportList[i].peEngineer !== null && this.exportList[i].peEngineer !== '') { |
|
|
|
|
|
this.exportList[i].projectLeader = this.exportList[i].peEngineer.split("-")[1]; |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'EE' || this.exportList[i].responsibleDepartment === 'R020') { |
|
|
|
|
|
if (this.exportList[i].eeEngineer !== null && this.exportList[i].eeEngineer !== '') { |
|
|
|
|
|
this.exportList[i].projectLeader = this.exportList[i].eeEngineer.split("-")[1]; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
@ -5305,6 +5317,18 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
} |
|
|
} |
|
|
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'QC') { |
|
|
|
|
|
if (this.proofingCurrentRow.qcEngineer != null && this.proofingCurrentRow.qcEngineer !== '') { |
|
|
|
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.qcEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'PE') { |
|
|
|
|
|
if (this.proofingCurrentRow.peEngineer != null && this.proofingCurrentRow.peEngineer !== '') { |
|
|
|
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.peEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'EE') { |
|
|
|
|
|
if (this.proofingCurrentRow.eeEngineer != null && this.proofingCurrentRow.eeEngineer !== '') { |
|
|
|
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.eeEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
this.projectPartDocumentList[i].projectLeader = '' |
|
|
this.projectPartDocumentList[i].projectLeader = '' |
|
|
@ -5464,6 +5488,18 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
} |
|
|
} |
|
|
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'QC') { |
|
|
|
|
|
if (this.proofingCurrentRow.qcEngineer != null && this.proofingCurrentRow.qcEngineer !== '') { |
|
|
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.qcEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'PE') { |
|
|
|
|
|
if (this.proofingCurrentRow.peEngineer != null && this.proofingCurrentRow.peEngineer !== '') { |
|
|
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.peEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'EE') { |
|
|
|
|
|
if (this.proofingCurrentRow.eeEngineer != null && this.proofingCurrentRow.eeEngineer !== '') { |
|
|
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.eeEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
this.projectOtherDocumentList[i].projectLeader = '' |
|
|
this.projectOtherDocumentList[i].projectLeader = '' |
|
|
@ -5734,6 +5770,18 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
} |
|
|
} |
|
|
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'QC') { |
|
|
|
|
|
if (this.proofingCurrentRow.qcEngineer != null && this.proofingCurrentRow.qcEngineer !== '') { |
|
|
|
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.qcEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'PE') { |
|
|
|
|
|
if (this.proofingCurrentRow.peEngineer != null && this.proofingCurrentRow.peEngineer !== '') { |
|
|
|
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.peEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'EE') { |
|
|
|
|
|
if (this.proofingCurrentRow.eeEngineer != null && this.proofingCurrentRow.eeEngineer !== '') { |
|
|
|
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.eeEngineer.split('-')[1] // 截取用户名 |
|
|
|
|
|
} |
|
|
} else { |
|
|
} else { |
|
|
this.projectAllDocumentList[i].projectLeader = '' |
|
|
this.projectAllDocumentList[i].projectLeader = '' |
|
|
} |
|
|
} |
|
|
|