From e6be6598d70f1fc4e6d4bf33d6e43dc6492187ad Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@gmail.com>
Date: 星期四, 13 二月 2025 22:49:04 +0800
Subject: [PATCH] #

---
 rsf-admin/src/page/login/Login.jsx |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/rsf-admin/src/page/login/Login.jsx b/rsf-admin/src/page/login/Login.jsx
index c4e4825..b70c721 100644
--- a/rsf-admin/src/page/login/Login.jsx
+++ b/rsf-admin/src/page/login/Login.jsx
@@ -16,7 +16,7 @@
     useLogin,
     useNotify,
 } from 'react-admin';
-import { useForm, Controller } from 'react-hook-form';
+import { useForm, Controller, useWatch, FormProvider, useFormContext } from "react-hook-form";
 import ProviderChoices from "./ProviderChoices";
 import Visibility from '@mui/icons-material/Visibility';
 import VisibilityOff from '@mui/icons-material/VisibilityOff';
@@ -26,9 +26,9 @@
     const notify = useNotify();
     const login = useLogin();
     const location = useLocation();
-    const { tenantList } = props;
+    const { systemInfo, tenantList } = props;
 
-    const { control, watch, handleSubmit, setValue } = useForm();
+    const { control, handleSubmit, watch, setValue, getValues } = useForm();
 
     const [loading, setLoading] = useState(false);
     const [showPassword, setShowPassword] = useState(false);
@@ -123,7 +123,7 @@
                         render={({ field }) => (
                             <TextField
                                 {...field}
-                                label={translate('ra.auth.username')}
+                                label={translate("page.login.username")}
                                 variant="standard"
                                 disabled={loading}
                                 autoFocus
@@ -140,7 +140,7 @@
                         render={({ field }) => (
                             <TextField
                                 {...field}
-                                label={translate('ra.auth.password')}
+                                label={translate("page.login.password")}
                                 type={showPassword ? 'text' : 'password'}
                                 variant="standard"
                                 disabled={loading}
@@ -163,14 +163,14 @@
                         )}
                     />
 
-                    <Box mt={10}></Box>
+                    <Box />
 
                     <Button
                         type="submit"
                         variant="contained"
                         disabled={loading || !(tenantId && username && password)}
                         sx={{
-                            backgroundColor: "#3D4BA7"
+                            // backgroundColor: "#3D4BA7"
                         }}
                     >
                         {loading && <CircularProgress size={25} thickness={2} />}

--
Gitblit v1.9.1