添加学员邮箱、密码自动填入优化

This commit is contained in:
unknown 2023-09-06 09:53:43 +08:00
parent fc9682c31d
commit 84fe2ecab1
2 changed files with 4 additions and 0 deletions

View File

@ -161,6 +161,7 @@ export const MemberCreate: React.FC<PropInterface> = ({
rules={[{ required: true, message: "请输入登录邮箱!" }]} rules={[{ required: true, message: "请输入登录邮箱!" }]}
> >
<Input <Input
autoComplete="off"
allowClear allowClear
style={{ width: 274 }} style={{ width: 274 }}
placeholder="请输入学员登录邮箱" placeholder="请输入学员登录邮箱"
@ -172,6 +173,7 @@ export const MemberCreate: React.FC<PropInterface> = ({
rules={[{ required: true, message: "请输入登录密码!" }]} rules={[{ required: true, message: "请输入登录密码!" }]}
> >
<Input.Password <Input.Password
autoComplete="off"
allowClear allowClear
style={{ width: 274 }} style={{ width: 274 }}
placeholder="请输入登录密码" placeholder="请输入登录密码"

View File

@ -202,6 +202,7 @@ export const MemberUpdate: React.FC<PropInterface> = ({
rules={[{ required: true, message: "请输入登录邮箱!" }]} rules={[{ required: true, message: "请输入登录邮箱!" }]}
> >
<Input <Input
autoComplete="off"
style={{ width: 274 }} style={{ width: 274 }}
allowClear allowClear
placeholder="请输入学员登录邮箱" placeholder="请输入学员登录邮箱"
@ -209,6 +210,7 @@ export const MemberUpdate: React.FC<PropInterface> = ({
</Form.Item> </Form.Item>
<Form.Item label="登录密码" name="password"> <Form.Item label="登录密码" name="password">
<Input.Password <Input.Password
autoComplete="off"
style={{ width: 274 }} style={{ width: 274 }}
allowClear allowClear
placeholder="请输入登录密码" placeholder="请输入登录密码"