forked from wangziqi/gongxue-base
104 lines
3.1 KiB
TypeScript
104 lines
3.1 KiB
TypeScript
import React, { useCallback, useState } from 'react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { Form, Input, Button, Card, Typography } from 'antd';
|
|
import { UserOutlined, LockOutlined } from '@ant-design/icons';
|
|
import api from '../../api';
|
|
import { message } from '../../ui/app-message';
|
|
import { writePermissions } from '../../auth/permission-store';
|
|
import { findRoleAwareLandingPath } from '../../auth/menu-policy';
|
|
|
|
const { Title } = Typography;
|
|
|
|
const LoginPage: React.FC = () => {
|
|
const [loading, setLoading] = useState(false);
|
|
const navigate = useNavigate();
|
|
|
|
const onFinish = useCallback(
|
|
async (values: any) => {
|
|
setLoading(true);
|
|
try {
|
|
const res: any = await api.post('/auth/login', values);
|
|
localStorage.setItem('token', res.access_token);
|
|
localStorage.setItem('user', JSON.stringify(res.user));
|
|
const permissions = res.user.permissions || [];
|
|
writePermissions(permissions);
|
|
message.success('登录成功');
|
|
navigate(findRoleAwareLandingPath(res.user.roles || [], permissions) || '/', {
|
|
replace: true,
|
|
});
|
|
} catch (err: any) {
|
|
message.error(err?.message || '登录失败');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
},
|
|
[navigate],
|
|
);
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
minHeight: '100vh',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
background: '#f5f5f7',
|
|
}}
|
|
>
|
|
<Card
|
|
style={{
|
|
maxWidth: 400,
|
|
width: 'calc(100vw - 48px)',
|
|
borderRadius: 16,
|
|
boxShadow: '0 4px 24px rgba(0,0,0,0.08)',
|
|
border: 'none',
|
|
}}
|
|
>
|
|
<div style={{ textAlign: 'center', marginBottom: 32 }}>
|
|
<Title level={3} style={{ margin: 0, fontWeight: 600, color: '#1d1d1f' }}>
|
|
学生管理系统
|
|
</Title>
|
|
<p style={{ color: '#86868b', marginTop: 8 }}>学生综合管理平台</p>
|
|
</div>
|
|
<Form name="login" layout="vertical" onFinish={onFinish} size="large">
|
|
<Form.Item
|
|
label="用户名"
|
|
name="username"
|
|
rules={[{ required: true, message: '请输入用户名' }]}
|
|
>
|
|
<Input
|
|
prefix={<UserOutlined />}
|
|
placeholder="用户名"
|
|
autoComplete="username"
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item
|
|
label="密码"
|
|
name="password"
|
|
rules={[{ required: true, message: '请输入密码' }]}
|
|
>
|
|
<Input.Password
|
|
prefix={<LockOutlined />}
|
|
placeholder="密码"
|
|
autoComplete="current-password"
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item>
|
|
<Button
|
|
type="primary"
|
|
htmlType="submit"
|
|
loading={loading}
|
|
block
|
|
style={{ height: 44, borderRadius: 10, fontWeight: 500 }}
|
|
>
|
|
登 录
|
|
</Button>
|
|
</Form.Item>
|
|
</Form>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoginPage;
|