import React from 'react'; import { Menu, Icon } from 'antd'; import '../leftTab.less'; const SubMenu = Menu.SubMenu; const MenuItemGroup = Menu.ItemGroup; const LeftTab = React.createClass({ getInitialState() { return { current: window.showCustomer ? 'customerList' : 'userList', }; }, handleClick(e) { this.props.handlekey(e.key); this.setState({ current: e.key, }); }, componentWillMount() { if (window.location.hash) { this.state.current = window.location.hash.substr(1); }; }, render() { return ( 个人用户列表 组织用户列表 我的客户列表 会员等级设置 客户查询 高企查询 ); }, }); export default LeftTab;