index.tsx 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import React from 'react';
  2. import axios from 'axios';
  3. import { Button, Form, Input } from 'antd';
  4. import { history } from 'umi';
  5. import { setSessionToken } from '@/utils/token';
  6. import './index.less'
  7. interface IProps {
  8. }
  9. const onFinish = (values: any) => {
  10. console.log('Success:', values);
  11. const response: any = axios.get('/api/token').then((res) => res.data.data);
  12. const current = new Date();
  13. const expireTime = current.setTime(current.getTime() + 1000 * 12 * 60 * 60);
  14. setSessionToken(response.token, response.token, expireTime);
  15. history.push('/');
  16. };
  17. const onFinishFailed = (errorInfo: any) => {
  18. console.log('Failed:', errorInfo);
  19. };
  20. const Login: React.FC<IProps> = ((): JSX.Element => {
  21. return <div className='login'>
  22. <div className='w_1200'>
  23. <Form
  24. name="basic"
  25. labelCol={{ span: 7 }}
  26. wrapperCol={{ span: 10 }}
  27. style={{ maxWidth: 1200 }}
  28. initialValues={{ remember: true }}
  29. onFinish={onFinish}
  30. onFinishFailed={onFinishFailed}
  31. autoComplete="off"
  32. >
  33. <Form.Item
  34. label="用户名"
  35. name="username"
  36. rules={[{ required: true, message: '请输入用户名!' }]}
  37. >
  38. <Input />
  39. </Form.Item>
  40. <Form.Item
  41. label="密码"
  42. name="password"
  43. rules={[{ required: true, message: '请输入密码d!' }]}
  44. >
  45. <Input.Password />
  46. </Form.Item>
  47. <Form.Item wrapperCol={{ offset: 7, span: 10 }}>
  48. <Button type="primary" htmlType="submit">
  49. 登录
  50. </Button>
  51. </Form.Item>
  52. </Form>
  53. </div>
  54. </div>
  55. });
  56. export default Login;