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: 'contract', subKey: 'sub1', keyList: [ { key: 'sub1', value: ['contract', 'patent', 'copyright', 'intellectual'] }, { key: 'sub2', value: ['standard', 'activity', 'activityCostList', 'orgTechCenter', 'techProduct', 'ratepay', 'finance', 'achievement', 'honorList', 'annualReport', 'cognizance', 'companyDetail'] }, { key: 'sub3', value: ['technology'] }, { key: 'sub4', value: ['evaluate'] } ] }; }, handleClick(e) { this.props.handlekey(e.key); this.setState({ current: e.key, }); }, componentWillMount() { const _me = this; if (window.location.hash) { let theKey = window.location.hash.substr(1); this.state.keyList.map(function (item1) { item1.value.map(function (item2) { if (theKey == item2) { _me.state.subKey = item1.key } }); }); this.state.current = theKey; if (theKey == 'createEvaluate') { this.state.subKey = 'sub4' this.state.current = 'evaluate'; } }; }, render() { if (window.userData && window.userData.type == 1) { return ( 知识产权管理}> 合同申请 专利管理 软著管理 知识产权管理 高企认定}> 高企申请管理 企业基本信息 标准制定情况 企业研究开发活动 企业研发费用详情 企业研发机构 高新技术产品(服务)情况 所得税纳税申报信息 财务报表信息 科技成果转化 企业荣誉及其他证明材料 企业年报 科技项目申报}> 申报管理 科技评估}> 科技评估管理 ); } else { return ( 科技评估}> 科技评估管理 ); } } }); export default LeftTab;