diff --git a/src/components/project/ProjectManagerOutTeacher.vue b/src/components/project/ProjectManagerOutTeacher.vue index c6ee1b8d..04ebef97 100644 --- a/src/components/project/ProjectManagerOutTeacher.vue +++ b/src/components/project/ProjectManagerOutTeacher.vue @@ -57,7 +57,6 @@ const getOutTeacher = () => { getTeacherList(memberParam.value).then(res => { if (res.data.code == 200) { userList.value = res.data.data.records - userList.value.map(item => item.supplier?item.name+"/"+item.supplier:item.name ) loading.value = false } }) @@ -65,7 +64,7 @@ const getOutTeacher = () => { const options = computed(() => userList.value.map(e => ({ // label: e.name + '(' + e.userNo + ')' + e.organizationName, - label: e.name + '(' + e.supplier + ')', + label: e.name + '/' + e.supplier, value: e.name, ...e, audienceList: null