From f0e747c7132c1c03efd281c634689e5c8e99af28 Mon Sep 17 00:00:00 2001 From: caiyuchao Date: Wed, 27 Aug 2025 16:25:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=81=A2=E5=A4=8D=E5=8F=AF=E9=80=89?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/views/license/license/data.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web-antd/src/views/license/license/data.ts b/apps/web-antd/src/views/license/license/data.ts index 7ec9854..194b1e4 100644 --- a/apps/web-antd/src/views/license/license/data.ts +++ b/apps/web-antd/src/views/license/license/data.ts @@ -14,7 +14,7 @@ import dayjs, { Dayjs } from 'dayjs'; import { z } from '#/adapter/form'; import { getCustomerList } from '#/api/license/customer'; import { isLicenseSnUnique } from '#/api/license/license'; -import { getLicenseProjectList, getProjectList } from '#/api/license/project'; +import { getProjectList } from '#/api/license/project'; import { getLicenseAdminList, getSimpleUserList } from '#/api/system/user'; import { DictTag } from '#/components/dict-tag'; import { $t } from '#/locales'; @@ -79,7 +79,7 @@ export function useFormSchema(): VbenFormSchema[] { ? getProjectList({ customerId: values.customerId, }) - : getLicenseProjectList({ + : getProjectList({ customerId: values.customerId, }));