loginContent.jsx 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import React from 'react';
  2. import { Icon, Tabs } from 'antd';
  3. import LoginForm from './loginForm.jsx';
  4. import loginqq from '../../../image/login_qq.png';
  5. import loginweixin from '../../../image/login_weixin.png';
  6. import loginweibo from '../../../image/login_weibo.png';
  7. import loginmore from '../../../image/login_more.png';
  8. import './login.less';
  9. const TabPane = Tabs.TabPane;
  10. const LoginContent = React.createClass({
  11. getInitialState() {
  12. return {
  13. theKey:"1"
  14. };
  15. },
  16. tabChange(key){
  17. this.setState({
  18. theKey:key
  19. })
  20. },
  21. render() {
  22. return (
  23. <div className="content clearfix">
  24. <div className="login-left">
  25. <img src="" alt="" />
  26. </div>
  27. <div className="login-right">
  28. <Tabs defaultActiveKey="1" onChange={this.tabChange} className="login-from">
  29. <TabPane tab="个人登录" key="1">
  30. <LoginForm loginProp={this.state.theKey}/>
  31. </TabPane>
  32. <TabPane tab="公司登录" key="2" className="tabtwo">
  33. <LoginForm loginProp={this.state.theKey}/>
  34. </TabPane>
  35. </Tabs>
  36. <div className="login-other clearfix">
  37. <ul className="clearfix">
  38. <li><img src={loginqq} alt="" /><p>QQ</p></li>
  39. <li><img src={loginweixin} alt="" /><p>微信</p></li>
  40. <li><img src={loginweibo} alt="" /><p>微博</p></li>
  41. <li className="join"><img src={loginmore} alt="" /><p><a href="./signIn.html">立即注册</a></p></li>
  42. </ul>
  43. </div>
  44. </div>
  45. </div>
  46. )
  47. }
  48. });
  49. export default LoginContent;