content.jsx 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import React from 'react';
  2. import '../content.less';
  3. import LeftTab from './leftTab.jsx';
  4. import Patent from './patent';
  5. import Intellectual from './intellectual';
  6. import Activity from './activity';
  7. import Standard from './standard';
  8. import ActivityCostList from './activityCostList';
  9. import TechProduct from './techProduct';
  10. import Ratepay from './ratepay';
  11. import Finance from './finance';
  12. import Achievement from './achievement';
  13. import HonorList from './honorList';
  14. import OrgTechCenter from './orgTechCenter';
  15. const Content = React.createClass({
  16. getInitialState() {
  17. return {
  18. loading: false,
  19. leftKey: 'patent',
  20. userType: '0'
  21. };
  22. },
  23. handlekey(key) {
  24. this.setState({
  25. leftKey: key,
  26. });
  27. window.location.hash = key;
  28. },
  29. componentWillMount() {
  30. if (window.location.hash) {
  31. this.handlekey(window.location.hash.substr(1));
  32. };
  33. },
  34. render() {
  35. return (
  36. <div className="acc-content">
  37. <LeftTab handlekey={this.handlekey} />
  38. <div className="content-right">
  39. {(() => {
  40. switch (this.state.leftKey) {
  41. case 'patent':
  42. return <Patent />;
  43. case 'intellectual':
  44. return <Intellectual />;
  45. case 'activity':
  46. return <Activity />;
  47. case 'standard':
  48. return <Standard />;
  49. case 'activityCostList':
  50. return <ActivityCostList />;
  51. case 'techProduct':
  52. return <TechProduct />;
  53. case 'ratepay':
  54. return <Ratepay />;
  55. case 'finance':
  56. return <Finance />;
  57. case 'achievement':
  58. return <Achievement />;
  59. case 'honorList':
  60. return <HonorList />;
  61. case 'orgTechCenter':
  62. return <OrgTechCenter />
  63. };
  64. })()}
  65. </div>
  66. </div>
  67. )
  68. }
  69. });
  70. export default Content;