UserLayout.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. import React from 'react';
  2. import { Link, Route } from 'dva/router';
  3. import DocumentTitle from 'react-document-title';
  4. import { Icon } from 'antd';
  5. import GlobalFooter from '../components/GlobalFooter';
  6. import styles from './UserLayout.less';
  7. import logo from '../assets/logo.svg';
  8. import { getRoutes } from '../utils/utils';
  9. const links = [{
  10. title: '帮助',
  11. href: '',
  12. }, {
  13. title: '隐私',
  14. href: '',
  15. }, {
  16. title: '条款',
  17. href: '',
  18. }];
  19. const copyright = <div>Copyright <Icon type="copyright" /> 2017-2020 领教信息科技有限公司</div>;
  20. class UserLayout extends React.PureComponent {
  21. getPageTitle() {
  22. const { routerData, location } = this.props;
  23. const { pathname } = location;
  24. let title = '渠道管理平台';
  25. if (routerData[pathname] && routerData[pathname].name) {
  26. title = `${routerData[pathname].name} - 渠道管理平台`;
  27. }
  28. return title;
  29. }
  30. render() {
  31. const { routerData, match } = this.props;
  32. return (
  33. <DocumentTitle title={this.getPageTitle()}>
  34. <div className={styles.outer}>
  35. <div className={styles.inner}>
  36. <div className={styles.container}>
  37. <div className={styles.top}>
  38. <div className={styles.header}>
  39. <Link to="/">
  40. <img alt="logo" className={styles.logo} src={logo} />
  41. <span className={styles.title}>CMS Browser</span>
  42. </Link>
  43. </div>
  44. <div className={styles.desc}>ChannelCMSBrowser - 渠道管理平台</div>
  45. </div>
  46. {
  47. getRoutes(match.path, routerData).map(item =>
  48. (
  49. <Route
  50. key={item.key}
  51. path={item.path}
  52. component={item.component}
  53. exact={item.exact}
  54. />
  55. )
  56. )
  57. }
  58. <GlobalFooter colorInverse className={styles.footer} links={links} copyright={copyright} />
  59. </div>
  60. </div>
  61. </div>
  62. </DocumentTitle>
  63. );
  64. }
  65. }
  66. export default UserLayout;