Commit 46593cbb authored by Bill's avatar Bill

fix: 修复修改密码手机验证bug

parent 3f2fbd4f
......@@ -125,18 +125,18 @@ const PhoneVerifyPanel: React.FC<IProps> = (props) => {
</>
: null
}
{
!visible
? <>
<EditDataComponent type={pageType} form={form} />
<Form.Item {...tailLayout}>
<Button type="primary" htmlType="submit">
提交
</Button>
</Form.Item>
</>
: null
}
{
visible
? <>
<EditDataComponent type={pageType} form={form} />
<Form.Item {...tailLayout}>
<Button type="primary" htmlType="submit">
提交
</Button>
</Form.Item>
</>
: null
}
</Form>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment