mirror of
https://github.com/PlayEdu/backend
synced 2025-06-08 09:27:54 +08:00
添加学员邮箱、密码自动填入优化
This commit is contained in:
parent
fc9682c31d
commit
84fe2ecab1
@ -161,6 +161,7 @@ export const MemberCreate: React.FC<PropInterface> = ({
|
||||
rules={[{ required: true, message: "请输入登录邮箱!" }]}
|
||||
>
|
||||
<Input
|
||||
autoComplete="off"
|
||||
allowClear
|
||||
style={{ width: 274 }}
|
||||
placeholder="请输入学员登录邮箱"
|
||||
@ -172,6 +173,7 @@ export const MemberCreate: React.FC<PropInterface> = ({
|
||||
rules={[{ required: true, message: "请输入登录密码!" }]}
|
||||
>
|
||||
<Input.Password
|
||||
autoComplete="off"
|
||||
allowClear
|
||||
style={{ width: 274 }}
|
||||
placeholder="请输入登录密码"
|
||||
|
@ -202,6 +202,7 @@ export const MemberUpdate: React.FC<PropInterface> = ({
|
||||
rules={[{ required: true, message: "请输入登录邮箱!" }]}
|
||||
>
|
||||
<Input
|
||||
autoComplete="off"
|
||||
style={{ width: 274 }}
|
||||
allowClear
|
||||
placeholder="请输入学员登录邮箱"
|
||||
@ -209,6 +210,7 @@ export const MemberUpdate: React.FC<PropInterface> = ({
|
||||
</Form.Item>
|
||||
<Form.Item label="登录密码" name="password">
|
||||
<Input.Password
|
||||
autoComplete="off"
|
||||
style={{ width: 274 }}
|
||||
allowClear
|
||||
placeholder="请输入登录密码"
|
||||
|
Loading…
x
Reference in New Issue
Block a user