content.jsx 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import React from 'react';
  2. import '../content.less';
  3. import LeftTab from './leftTab.jsx';
  4. import GroupLeftTab from './leftTabgroup.jsx';
  5. import Base from './base.jsx';
  6. import Group from './group.jsx';
  7. import Person from './person.jsx';
  8. import Company from './company.jsx';
  9. import Edu from './edu.jsx';
  10. import Tech from './tech.jsx';
  11. import Pfs from './pfs.jsx';
  12. import Ablt from './ablt.jsx';
  13. import HrSituation from './hrSituation.jsx';
  14. //新开发账户管理
  15. import Account from './newAccount/account';
  16. import Unit from './newAccount/unit';
  17. import Personal from './newAccount/personal';
  18. import Contacts from './newAccount/contacts';
  19. const Content = React.createClass({
  20. getInitialState() {
  21. return {
  22. loading: false,
  23. leftKey: 'standard',
  24. userType: '0'
  25. };
  26. },
  27. handlekey(key) {
  28. this.setState({
  29. leftKey: key,
  30. });
  31. window.location.hash = key;
  32. },
  33. componentWillMount() {
  34. if (userData) {
  35. if (userData.type == '0') {
  36. this.state.leftKey = 'base';
  37. } else if (userData.type == '1') {
  38. this.state.leftKey = 'group';
  39. };
  40. };
  41. if (window.location.hash) {
  42. this.handlekey(window.location.hash.substr(1));
  43. };
  44. },
  45. render() {
  46. return (
  47. <div className="acc-content">
  48. {(() => {
  49. if (userData.type == 1) {
  50. return <GroupLeftTab handlekey={this.handlekey} />;
  51. } else {
  52. return <LeftTab handlekey={this.handlekey} />;
  53. };
  54. })()}
  55. <div className="content-right">
  56. {(() => {
  57. switch (this.state.leftKey) {
  58. case 'base':
  59. return <Base />;
  60. case 'person':
  61. return <Person />;
  62. case 'edu':
  63. return <Edu />;
  64. case 'pfs':
  65. return <Pfs />;
  66. case 'ablt':
  67. return <Ablt />;
  68. case 'group':
  69. return <Group />;
  70. case 'company':
  71. return <Company />;
  72. case 'tech':
  73. return <Tech />;
  74. case 'hrSituation':
  75. return <HrSituation />;
  76. case 'account':
  77. return <Account />;
  78. case 'unit':
  79. return <Unit />;
  80. case 'personal':
  81. return <Personal />;
  82. case 'contacts':
  83. return <Contacts />;
  84. };
  85. })()}
  86. </div>
  87. </div>
  88. )
  89. }
  90. });
  91. export default Content;