添加可拖拽的路由停靠组件,支持动态标签管理,支持侧边栏多项同时展开 #31

Merged
wangziqi merged 6 commits from xiongyuxing/gongxue-base:main into main 2026-07-21 06:37:34 +00:00
Showing only changes of commit fe0b71a0a9 - Show all commits

View File

@@ -60,20 +60,28 @@ const LoginPage: React.FC = () => {
</Title>
<p style={{ color: '#86868b', marginTop: 8 }}></p>
</div>
<Form name="login" onFinish={onFinish} size="large">
<Form name="login" layout="vertical" onFinish={onFinish} size="large">
<Form.Item
label="用户名"
name="username"
rules={[{ required: true, message: '请输入用户名' }]}
>
<Input prefix={<UserOutlined />} placeholder="用户名" />
<Input
prefix={<UserOutlined />}
placeholder="用户名"
autoComplete="username"
/>
</Form.Item>
<Form.Item
label="密码"
name="password"
rules={[{ required: true, message: '请输入密码' }]}
>
<Input.Password prefix={<LockOutlined />} placeholder="密码" />
<Input.Password
prefix={<LockOutlined />}
placeholder="密码"
autoComplete="current-password"
/>
</Form.Item>
<Form.Item>
<Button