loginForm.jsx 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. import React from 'react';
  2. import { Form, Icon, Input, Button, Checkbox, Spin } from 'antd';
  3. import './login.less';
  4. import ajax from 'jquery/src/ajax/xhr.js'
  5. import $ from 'jquery/src/ajax';
  6. const FormItem = Form.Item;
  7. const LoginForm = Form.create()(React.createClass({
  8. getInitialState() {
  9. return {
  10. loading: false
  11. };
  12. },
  13. handleSubmit(e) {
  14. e.preventDefault();
  15. this.props.form.validateFields((err, values) => {
  16. if (!err) {
  17. this.setState({
  18. loading: true
  19. });
  20. $.ajax({
  21. method: "POST",
  22. dataType: "json",
  23. crossDomain: false,
  24. url: globalConfig.context + "/signin",
  25. data: {
  26. user: values.userName,
  27. pwd: values.password,
  28. remember:values.remember,
  29. group: this.props.loginProp === "2" ? true : false
  30. }
  31. }).done(function (data) {
  32. if (!data.error.length) {
  33. window.location.href = "warning.html"
  34. } else {
  35. this.tips(data.error[0].message);
  36. }
  37. }.bind(this)).always(function () {
  38. this.setState({
  39. loading: false
  40. });
  41. }.bind(this));
  42. }
  43. });
  44. },
  45. render() {
  46. const { getFieldDecorator } = this.props.form;
  47. return (
  48. <Spin spinning={this.state.loading}>
  49. <Form onSubmit={this.handleSubmit} className="login-form">
  50. <FormItem>
  51. {getFieldDecorator('userName', {
  52. rules: [{ required: true, message: 'Please input your username!' }],
  53. })(
  54. <Input addonBefore={<Icon type="user" />} placeholder="Username" />
  55. )}
  56. </FormItem>
  57. <FormItem>
  58. {getFieldDecorator('password', {
  59. rules: [{ required: true, message: 'Please input your Password!' }],
  60. })(
  61. <Input addonBefore={<Icon type="lock" />} type="password" placeholder="Password" />
  62. )}
  63. </FormItem>
  64. <FormItem>
  65. {getFieldDecorator('remember', {
  66. valuePropName: 'checked',
  67. initialValue: true,
  68. })(
  69. <Checkbox>记住我</Checkbox>
  70. )}
  71. <a className="login-form-forgot">忘记密码</a>
  72. <Button type="primary" htmlType="submit" className="login-form-button">
  73. 登录
  74. </Button>
  75. </FormItem>
  76. </Form>
  77. </Spin>
  78. );
  79. },
  80. }));
  81. export default LoginForm;