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: 'patent', }; }, 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;