|
|
|
@ -2028,6 +2028,10 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
peEngineerName:'', |
|
|
|
eeEngineer:'', |
|
|
|
eeEngineerName:'', |
|
|
|
sqemeEngineer:'', |
|
|
|
sqemeEngineerName:'', |
|
|
|
sqeeeEngineer:'', |
|
|
|
sqeeeEngineerName:'', |
|
|
|
//projectCreationDate为当前服务器的时间 |
|
|
|
projectCreationDate: new Date(), |
|
|
|
finalPartNo:'', |
|
|
|
@ -2049,6 +2053,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
testPartNo: '', |
|
|
|
partDesc: '', |
|
|
|
cProjectTypeDb: '', |
|
|
|
sqemeEngineer: '', |
|
|
|
sqeeeEngineer: '', |
|
|
|
projectPhase: '', |
|
|
|
proofingNo: '', |
|
|
|
proofingNumber: '', |
|
|
|
@ -2159,12 +2165,7 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
copyDocumentList: [], |
|
|
|
copyDialog: false, |
|
|
|
departmentList:[], |
|
|
|
cProjectTypeDbList: [ |
|
|
|
{cProjectTypeDb: 'Sustaining'}, |
|
|
|
{cProjectTypeDb: 'Low Risk'}, |
|
|
|
{cProjectTypeDb: 'High Risk'}, |
|
|
|
|
|
|
|
], |
|
|
|
cProjectTypeDbList: [], |
|
|
|
projectPhaseList: [ |
|
|
|
{projectPhase: 'Prototype'}, |
|
|
|
{projectPhase: 'Alpha'}, |
|
|
|
@ -3906,6 +3907,20 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
} |
|
|
|
return this.$store.state.user.site |
|
|
|
}, |
|
|
|
normalizeSqeEngineerFields (target) { |
|
|
|
if (!target) { |
|
|
|
return target |
|
|
|
} |
|
|
|
target.sqemeEngineer = target.sqemeEngineer || '' |
|
|
|
target.sqeeeEngineer = target.sqeeeEngineer || '' |
|
|
|
return target |
|
|
|
}, |
|
|
|
splitUserDisplayName (userValue) { |
|
|
|
if (userValue === null || userValue === undefined || userValue === '') { |
|
|
|
return '' |
|
|
|
} |
|
|
|
return userValue.indexOf('-') > -1 ? userValue.split('-')[1] : userValue |
|
|
|
}, |
|
|
|
handleColumnResize(newWidth, oldWidth, column, event){ |
|
|
|
let inData= this.columnList.filter(item => item.columnProp === column.property)[0] |
|
|
|
inData.columnWidth=newWidth |
|
|
|
@ -3974,6 +3989,31 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
let buNo = this.getBuNoByBuDesc(buDesc) |
|
|
|
this.loadSearchProjectCategory(buNo) |
|
|
|
}, |
|
|
|
// 新增打样弹窗按 BU 加载项目分类 |
|
|
|
loadProofingProjectCategory (buNo, site) { |
|
|
|
const currentSite = this.resolveCurrentPartSite(site) |
|
|
|
let inData = { |
|
|
|
site: currentSite, |
|
|
|
buNo: buNo || '' |
|
|
|
} |
|
|
|
getProjectCategoryByBu(inData).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.cProjectTypeDbList = (data.rows || []).map(item => ({ |
|
|
|
cProjectTypeDb: item.projectCategory |
|
|
|
})) |
|
|
|
} else { |
|
|
|
this.cProjectTypeDbList = [] |
|
|
|
} |
|
|
|
if (this.newProofingRecordData.cProjectTypeDb && !this.cProjectTypeDbList.some(item => item.cProjectTypeDb === this.newProofingRecordData.cProjectTypeDb)) { |
|
|
|
this.cProjectTypeDbList.push({ cProjectTypeDb: this.newProofingRecordData.cProjectTypeDb }) |
|
|
|
} |
|
|
|
}).catch(() => { |
|
|
|
this.cProjectTypeDbList = [] |
|
|
|
if (this.newProofingRecordData.cProjectTypeDb) { |
|
|
|
this.cProjectTypeDbList.push({ cProjectTypeDb: this.newProofingRecordData.cProjectTypeDb }) |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
// 获取基础数据列表S |
|
|
|
getBaseList (val,type) { |
|
|
|
@ -4114,18 +4154,28 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
if (this.exportList[i].cQualityEngineer7 !== null && this.exportList[i].cQualityEngineer7 !== '') { |
|
|
|
this.exportList[i].projectLeader = this.exportList[i].cQualityEngineer7.split("-")[1]; |
|
|
|
} |
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'QC' || this.exportList[i].responsibleDepartment === 'R018') { |
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'QC' || this.exportList[i].responsibleDepartment === 'RQC' || 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') { |
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'PE' || this.exportList[i].responsibleDepartment === 'RPE' || 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') { |
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'EE' || this.exportList[i].responsibleDepartment === 'REE' || 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]; |
|
|
|
} |
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'SQE-ME' || this.exportList[i].responsibleDepartment === 'RSQEME') { |
|
|
|
const sqeMe = this.exportList[i].sqemeEngineer; |
|
|
|
if (sqeMe !== null && sqeMe !== '') { |
|
|
|
this.exportList[i].projectLeader = this.splitUserDisplayName(sqeMe); |
|
|
|
} |
|
|
|
} else if (this.exportList[i].responsibleDepartment === 'SQE-EE' || this.exportList[i].responsibleDepartment === 'RSQEEE') { |
|
|
|
const sqeEe = this.exportList[i].sqeeeEngineer; |
|
|
|
if (sqeEe !== null && sqeEe !== '') { |
|
|
|
this.exportList[i].projectLeader = this.splitUserDisplayName(sqeEe); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
@ -4171,6 +4221,7 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
this.totalPage = data.page.totalCount |
|
|
|
// 遍历dataList |
|
|
|
this.dataList.forEach((item) => { |
|
|
|
this.normalizeSqeEngineerFields(item) |
|
|
|
item.projectManagerName = item.projectManager.split('-')[1] |
|
|
|
item.projectOwnerName = item.projectOwner.split('-')[1] |
|
|
|
item.engineerName = item.engineer.split('-')[1] |
|
|
|
@ -4219,6 +4270,7 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
this.totalPage = data.page.totalCount |
|
|
|
// 遍历dataList |
|
|
|
this.dataList.forEach((item) => { |
|
|
|
this.normalizeSqeEngineerFields(item) |
|
|
|
item.projectManagerName = item.projectManager.split('-')[1] |
|
|
|
item.projectOwnerName = item.projectOwner.split('-')[1] |
|
|
|
item.engineerName = item.engineer.split('-')[1] |
|
|
|
@ -4286,6 +4338,7 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
this.totalPage = data.page.totalCount |
|
|
|
// 遍历dataList |
|
|
|
this.dataList.forEach((item) => { |
|
|
|
this.normalizeSqeEngineerFields(item) |
|
|
|
item.projectManagerName = item.projectManager.split('-')[1] |
|
|
|
item.projectOwnerName = item.projectOwner.split('-')[1] |
|
|
|
item.engineerName = item.engineer.split('-')[1] |
|
|
|
@ -4405,6 +4458,7 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
proofingClickRow(row){ |
|
|
|
row.proofingId = -1 |
|
|
|
this.proofingCurrentRow=JSON.parse(JSON.stringify(row)); |
|
|
|
this.normalizeSqeEngineerFields(this.proofingCurrentRow) |
|
|
|
this.searchProjectDocumentTypeData.site = this.resolveCurrentPartSite(row.site) |
|
|
|
}, |
|
|
|
/** |
|
|
|
@ -4417,6 +4471,7 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
// 判断是否是获取焦点的事件 |
|
|
|
if (row) { |
|
|
|
this.proofingCurrentRow = JSON.parse(JSON.stringify(row)) |
|
|
|
this.normalizeSqeEngineerFields(this.proofingCurrentRow) |
|
|
|
this.searchProjectDocumentTypeData.site = this.resolveCurrentPartSite(row.site) |
|
|
|
} |
|
|
|
}, |
|
|
|
@ -4516,6 +4571,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
qcEngineer: row.qcEngineer, |
|
|
|
peEngineer: row.peEngineer, |
|
|
|
eeEngineer: row.eeEngineer, |
|
|
|
sqemeEngineer: row.sqemeEngineer || '', |
|
|
|
sqeeeEngineer: row.sqeeeEngineer || '', |
|
|
|
finalPartNo: row.finalPartNo, |
|
|
|
finalPartDesc: row.finalPartDesc, |
|
|
|
// active: row.active, |
|
|
|
@ -4587,6 +4644,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
qcEngineer: row.qcEngineer, |
|
|
|
peEngineer: row.peEngineer, |
|
|
|
eeEngineer: row.eeEngineer, |
|
|
|
sqemeEngineer: row.sqemeEngineer || '', |
|
|
|
sqeeeEngineer: row.sqeeeEngineer || '', |
|
|
|
remark: '', |
|
|
|
planStartDate : new Date(), |
|
|
|
proofingNo: '', |
|
|
|
@ -4595,6 +4654,7 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
createDate: '', |
|
|
|
createBy: this.$store.state.user.name, |
|
|
|
} |
|
|
|
this.loadProofingProjectCategory(row.buNo, row.site) |
|
|
|
this.visible = true |
|
|
|
}, |
|
|
|
|
|
|
|
@ -4722,6 +4782,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
qcEngineer: row.qcEngineer, |
|
|
|
peEngineer: row.peEngineer, |
|
|
|
eeEngineer: row.eeEngineer, |
|
|
|
sqemeEngineer: row.sqemeEngineer || '', |
|
|
|
sqeeeEngineer: row.sqeeeEngineer || '', |
|
|
|
buildDate: row.buildDate, |
|
|
|
status: row.status, |
|
|
|
partType: row.partType, |
|
|
|
@ -4928,6 +4990,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
qcEngineer: row.qcEngineer, |
|
|
|
peEngineer: row.peEngineer, |
|
|
|
eeEngineer: row.eeEngineer, |
|
|
|
sqemeEngineer: row.sqemeEngineer || '', |
|
|
|
sqeeeEngineer: row.sqeeeEngineer || '', |
|
|
|
buildDate: row.buildDate, |
|
|
|
status: row.status, |
|
|
|
partType: row.partType, |
|
|
|
@ -5021,6 +5085,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
qcEngineer: this.proofingCurrentRow.qcEngineer, |
|
|
|
peEngineer: this.proofingCurrentRow.peEngineer, |
|
|
|
eeEngineer: this.proofingCurrentRow.eeEngineer, |
|
|
|
sqemeEngineer: this.proofingCurrentRow.sqemeEngineer, |
|
|
|
sqeeeEngineer: this.proofingCurrentRow.sqeeeEngineer, |
|
|
|
// username:this.$store.state.user.name, |
|
|
|
page: 1, |
|
|
|
limit: 1000 |
|
|
|
@ -5032,7 +5098,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
showProofDetailModal(row) { |
|
|
|
this.activeModalTab = 'proofRecord' |
|
|
|
// 保存当前行数据 |
|
|
|
this.proofingCurrentRow = row; |
|
|
|
this.proofingCurrentRow = JSON.parse(JSON.stringify(row)); |
|
|
|
this.normalizeSqeEngineerFields(this.proofingCurrentRow) |
|
|
|
// 打开模态框 |
|
|
|
this.dialogVisible = true; |
|
|
|
// 模态框打开后刷新 proofRecord 组件的数据 |
|
|
|
@ -5062,6 +5129,8 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
qcEngineer: this.proofingCurrentRow.qcEngineer, |
|
|
|
peEngineer: this.proofingCurrentRow.peEngineer, |
|
|
|
eeEngineer: this.proofingCurrentRow.eeEngineer, |
|
|
|
sqemeEngineer: this.proofingCurrentRow.sqemeEngineer, |
|
|
|
sqeeeEngineer: this.proofingCurrentRow.sqeeeEngineer, |
|
|
|
// username:this.$store.state.user.name, |
|
|
|
page: 1, |
|
|
|
limit: 1000 |
|
|
|
@ -5317,18 +5386,28 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'QC') { |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'QC' || this.projectPartDocumentList[i].responsibleDepartment === 'RQC') { |
|
|
|
if (this.proofingCurrentRow.qcEngineer != null && this.proofingCurrentRow.qcEngineer !== '') { |
|
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.qcEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'PE') { |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'PE' || this.projectPartDocumentList[i].responsibleDepartment === 'RPE') { |
|
|
|
if (this.proofingCurrentRow.peEngineer != null && this.proofingCurrentRow.peEngineer !== '') { |
|
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.peEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'EE') { |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'EE' || this.projectPartDocumentList[i].responsibleDepartment === 'REE') { |
|
|
|
if (this.proofingCurrentRow.eeEngineer != null && this.proofingCurrentRow.eeEngineer !== '') { |
|
|
|
this.projectPartDocumentList[i].projectLeader = this.proofingCurrentRow.eeEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'SQE-ME' || this.projectPartDocumentList[i].responsibleDepartment === 'RSQEME') { |
|
|
|
const sqeMe = this.proofingCurrentRow.sqemeEngineer |
|
|
|
if (sqeMe != null && sqeMe !== '') { |
|
|
|
this.projectPartDocumentList[i].projectLeader = this.splitUserDisplayName(sqeMe) |
|
|
|
} |
|
|
|
} else if (this.projectPartDocumentList[i].responsibleDepartment === 'SQE-EE' || this.projectPartDocumentList[i].responsibleDepartment === 'RSQEEE') { |
|
|
|
const sqeEe = this.proofingCurrentRow.sqeeeEngineer |
|
|
|
if (sqeEe != null && sqeEe !== '') { |
|
|
|
this.projectPartDocumentList[i].projectLeader = this.splitUserDisplayName(sqeEe) |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
this.projectPartDocumentList[i].projectLeader = '' |
|
|
|
@ -5488,18 +5567,28 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'QC') { |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'QC' || this.projectOtherDocumentList[i].responsibleDepartment === 'RQC') { |
|
|
|
if (this.proofingCurrentRow.qcEngineer != null && this.proofingCurrentRow.qcEngineer !== '') { |
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.qcEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'PE') { |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'PE' || this.projectOtherDocumentList[i].responsibleDepartment === 'RPE') { |
|
|
|
if (this.proofingCurrentRow.peEngineer != null && this.proofingCurrentRow.peEngineer !== '') { |
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.peEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'EE') { |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'EE' || this.projectOtherDocumentList[i].responsibleDepartment === 'REE') { |
|
|
|
if (this.proofingCurrentRow.eeEngineer != null && this.proofingCurrentRow.eeEngineer !== '') { |
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.proofingCurrentRow.eeEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'SQE-ME' || this.projectOtherDocumentList[i].responsibleDepartment === 'RSQEME') { |
|
|
|
const sqeMe = this.proofingCurrentRow.sqemeEngineer |
|
|
|
if (sqeMe != null && sqeMe !== '') { |
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.splitUserDisplayName(sqeMe) |
|
|
|
} |
|
|
|
} else if (this.projectOtherDocumentList[i].responsibleDepartment === 'SQE-EE' || this.projectOtherDocumentList[i].responsibleDepartment === 'RSQEEE') { |
|
|
|
const sqeEe = this.proofingCurrentRow.sqeeeEngineer |
|
|
|
if (sqeEe != null && sqeEe !== '') { |
|
|
|
this.projectOtherDocumentList[i].projectLeader = this.splitUserDisplayName(sqeEe) |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
this.projectOtherDocumentList[i].projectLeader = '' |
|
|
|
@ -5770,18 +5859,28 @@ import {uploadFileList} from '@/api/base/baseFunction.js'; |
|
|
|
if (this.proofingCurrentRow.cQualityEngineer7 != null && this.proofingCurrentRow.cQualityEngineer7 !== '') { |
|
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.cQualityEngineer7.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'QC') { |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'QC' || this.projectAllDocumentList[i].responsibleDepartment === 'RQC') { |
|
|
|
if (this.proofingCurrentRow.qcEngineer != null && this.proofingCurrentRow.qcEngineer !== '') { |
|
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.qcEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'PE') { |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'PE' || this.projectAllDocumentList[i].responsibleDepartment === 'RPE') { |
|
|
|
if (this.proofingCurrentRow.peEngineer != null && this.proofingCurrentRow.peEngineer !== '') { |
|
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.peEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'EE') { |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'EE' || this.projectAllDocumentList[i].responsibleDepartment === 'REE') { |
|
|
|
if (this.proofingCurrentRow.eeEngineer != null && this.proofingCurrentRow.eeEngineer !== '') { |
|
|
|
this.projectAllDocumentList[i].projectLeader = this.proofingCurrentRow.eeEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'SQE-ME' || this.projectAllDocumentList[i].responsibleDepartment === 'RSQEME') { |
|
|
|
const sqeMe = this.proofingCurrentRow.sqemeEngineer |
|
|
|
if (sqeMe != null && sqeMe !== '') { |
|
|
|
this.projectAllDocumentList[i].projectLeader = this.splitUserDisplayName(sqeMe) |
|
|
|
} |
|
|
|
} else if (this.projectAllDocumentList[i].responsibleDepartment === 'SQE-EE' || this.projectAllDocumentList[i].responsibleDepartment === 'RSQEEE') { |
|
|
|
const sqeEe = this.proofingCurrentRow.sqeeeEngineer |
|
|
|
if (sqeEe != null && sqeEe !== '') { |
|
|
|
this.projectAllDocumentList[i].projectLeader = this.splitUserDisplayName(sqeEe) |
|
|
|
} |
|
|
|
} else { |
|
|
|
this.projectAllDocumentList[i].projectLeader = '' |
|
|
|
} |
|
|
|
|