Merge pull request !2 from 白书科技/fix/0906
This commit is contained in:
白书科技 2023-09-06 01:55:31 +00:00 committed by Gitee
commit 95b7b2306e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -30,7 +30,7 @@ const LoginPage = () => {
const loginSubmit = async (e: any) => {
if (!email) {
Toast.show({
content: "请输入邮箱或uid",
content: "请输入邮箱或UID",
});
return;
}
@ -127,7 +127,7 @@ const LoginPage = () => {
<div className={styles["input-box"]}>
<Input
className={styles["input-item"]}
placeholder="请输入邮箱或uid"
placeholder="请输入邮箱或UID"
value={email}
onChange={(val) => {
setEmail(val);