From e8d0fd0e273bdaf5d574ba250044d71267f174e5 Mon Sep 17 00:00:00 2001 From: dap <15891557205@163.com> Date: Tue, 8 Oct 2024 14:22:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=B3=E9=97=AD=E7=A7=9F=E6=88=B7?= =?UTF-8?q?=E6=97=B6=20=E8=8E=B7=E5=8F=96=E7=9A=84voList=E4=B8=BAnull=20?= =?UTF-8?q?=E9=9C=80=E8=A6=81=E6=B7=BB=E5=8A=A0=E5=8F=AF=E9=80=89=E9=93=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/views/_core/authentication/login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web-antd/src/views/_core/authentication/login.vue b/apps/web-antd/src/views/_core/authentication/login.vue index 5ed7adf2..bf80359d 100644 --- a/apps/web-antd/src/views/_core/authentication/login.vue +++ b/apps/web-antd/src/views/_core/authentication/login.vue @@ -60,7 +60,7 @@ const formSchema = computed((): VbenFormSchema[] => { component: 'VbenSelect', componentProps: { class: 'bg-background h-[40px] focus:border-primary', - options: tenantInfo.value.voList.map((item) => ({ + options: tenantInfo.value.voList?.map((item) => ({ label: item.companyName, value: item.tenantId, })),