From 98d4db97d3c21f9b31f978249c5572fdae948088 Mon Sep 17 00:00:00 2001 From: verou <857149855@qq.com> Date: 星期三, 09 四月 2025 13:21:22 +0800 Subject: [PATCH] Merge branch 'devlop' of http://47.97.1.152:5880/r/wms-master into devlop --- rsf-admin/src/page/login/Login.jsx | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/rsf-admin/src/page/login/Login.jsx b/rsf-admin/src/page/login/Login.jsx index 536a6ad..186f09a 100644 --- a/rsf-admin/src/page/login/Login.jsx +++ b/rsf-admin/src/page/login/Login.jsx @@ -14,8 +14,10 @@ import { useTranslate, useLogin, + localStorageStore, useNotify, } from 'react-admin'; +import { getSystemDicts } from "@/api/auth"; import { useForm, Controller, useWatch, FormProvider, useFormContext } from "react-hook-form"; import ProviderChoices from "./ProviderChoices"; import Visibility from '@mui/icons-material/Visibility'; @@ -36,7 +38,7 @@ const username = watch('username'); const password = watch('password'); const tenantId = watch('tenantId'); - + useEffect(() => { if (tenantList.length > 0 && !tenantId) { const rememberTenantId = localStorage.getItem('remember_tenantId'); @@ -49,6 +51,9 @@ }, [tenantList, setValue]); const onSubmit = (data) => { + getSystemDicts().then(data => { + localStorage.setItem('sys_dicts', JSON.stringify(data)); + }) setLoading(true); login( data, -- Gitblit v1.9.1