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

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: "请输入登录邮箱!" }]}
>
<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="请输入登录密码"

View File

@ -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="请输入登录密码"