topTab.jsx 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import React from 'react';
  2. import { Row, Col } from 'antd';
  3. import './topTab.less';
  4. import logo from '../../../image/acc-logo.png';
  5. const TopTab = React.createClass({
  6. getInitialState() {
  7. return {
  8. username: 'username',
  9. };
  10. },
  11. render() {
  12. return (
  13. <div className="account-top">
  14. <div className="acc-top-user">
  15. <span className="acc-top-user-name">欢迎您, {this.state.username} <a href="">[ 退出 ]</a></span>
  16. <span className="acc-top-user-toindex"><a href="../index.html">返回首页</a></span>
  17. </div>
  18. <div className="acc-index">
  19. <div className="acc-index-imgbox">
  20. <img src={logo} alt="" />
  21. </div>
  22. <span><a href="./index.html">会员中心首页</a></span>
  23. </div>
  24. <div className="acc-top-tab">
  25. <Row>
  26. <Col className={this.props.active === 'set' ? 'active' : '' } span={2}><a href="./set.html">账号设置</a></Col>
  27. <Col className={this.props.active === 'guanli' ? 'active' : '' } span={2}><a href="./set.html">供需管理</a></Col>
  28. <Col className={this.props.active === 'jiaoliu' ? 'active' : '' } span={2}><a href="./set.html">交流互动</a></Col>
  29. <Col className={this.props.active === 'huodong' ? 'active' : '' } span={2}><a href="./set.html">活动管理</a></Col>
  30. <Col className={this.props.active === 'jishu' ? 'active' : '' } span={2}><a href="./set.html">技术评估</a></Col>
  31. <Col className={this.props.active === 'pingshen' ? 'active' : '' } span={2}><a href="./set.html">评审管理</a></Col>
  32. <Col className={this.props.active === 'yanfa' ? 'active' : '' } span={2}><a href="./set.html">研发平台</a></Col>
  33. </Row>
  34. </div>
  35. </div>
  36. )
  37. }
  38. });
  39. export default TopTab;