diff --git a/src/components/project/AddOrgContent.vue b/src/components/project/AddOrgContent.vue index 7ec7505d..8fffb02f 100644 --- a/src/components/project/AddOrgContent.vue +++ b/src/components/project/AddOrgContent.vue @@ -93,7 +93,7 @@ import * as lecturerApi from "@/api/Lecturer.js"; notLists?.value?.some(i=>{ if(i.orgId == item.id){ item.disabled = true - item.name = item.name + '(' + i.orgName + ')' + item.name = item.name + '(' + i.affiliationName + ')' return true } }) @@ -129,7 +129,7 @@ import * as lecturerApi from "@/api/Lecturer.js"; notLists.value.some(i=>{ if(i.orgId == item.id){ item.disabled = true - item.name = item.name + '(' + i.orgName + ')' + item.name = item.name + '(' + i.affiliationName + ')' return true } })