From 67ab0f7599d271c4169f630a695945126daeec8c Mon Sep 17 00:00:00 2001 From: gengxin Date: Tue, 18 Feb 2025 16:02:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8B=E6=8B=89=E5=88=97=E8=A1=A8=E6=A1=86?= =?UTF-8?q?=20=E5=90=8D=E7=A7=B0=E5=B8=85=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/project/ProjectManagerOutTeacher.vue | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/components/project/ProjectManagerOutTeacher.vue b/src/components/project/ProjectManagerOutTeacher.vue index 6c527449..c6ee1b8d 100644 --- a/src/components/project/ProjectManagerOutTeacher.vue +++ b/src/components/project/ProjectManagerOutTeacher.vue @@ -57,6 +57,7 @@ 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 } }) @@ -118,13 +119,6 @@ function change(e, l) { isOpen.value = false Array.isArray(l) && (selectOptions.value = l) Array.isArray(selectOptions.value) && emit('onChange', e, l) - selectOptions.value.map(e => ({ - // label: e.name + '(' + e.userNo + ')' + e.organizationName, - label: e.name + '(' + e.supplier + ')', - value: e.name, - ...e, - audienceList: null - })); emit('update:name', l?.label) emit('update:value', l?.value) emit('update:mobile', l?.label)