From ebd324f4459161f2b5792253f0e9fa59d1f8b376 Mon Sep 17 00:00:00 2001 From: zhutianqi Date: Tue, 14 Dec 2021 17:15:48 +0800 Subject: [PATCH] commit --- .../workingGroup/components/workingGroup1/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/regulatoryRepository/workingGroup/components/workingGroup1/index.vue b/src/pages/regulatoryRepository/workingGroup/components/workingGroup1/index.vue index 3d2e79b8e..3bc0a8498 100644 --- a/src/pages/regulatoryRepository/workingGroup/components/workingGroup1/index.vue +++ b/src/pages/regulatoryRepository/workingGroup/components/workingGroup1/index.vue @@ -1047,17 +1047,18 @@ if (this.pType === '选择联络人') { this.addForm.wgNetInfos[this.pIndex].name = data[0].name this.addForm.wgNetInfos[this.pIndex].netId = data[0].id - this.addForm.wgNetInfos[this.pIndex].unit = data[0].positionName + this.addForm.wgNetInfos[this.pIndex].unit = data[0].unit this.addForm.wgNetInfos[this.pIndex].phone = data[0].phone this.addForm.wgNetInfos[this.pIndex].email = data[0].email } else if (this.pType === '选择我司人员') { + console.log(data[0]); this.addForm.wgDepts[this.pIndex].name = data[0].name this.addForm.wgDepts[this.pIndex].deptPeopleId = data[0].id this.addForm.wgDepts[this.pIndex].phone = data[0].phone this.addForm.wgDepts[this.pIndex].email = data[0].email this.addForm.wgDepts[this.pIndex].deptId = data[0].institutionId this.addForm.wgDepts[this.pIndex].deptName = data[0].institutionName - this.addForm.wgDepts[this.pIndex].unit = data[0].positionId + this.addForm.wgDepts[this.pIndex].unit = data[0].unit this.addForm.wgDepts[this.pIndex].unitName = data[0].positionName } },