|
|
@ -1,5 +1,6 @@ |
|
|
import React from 'react'; |
|
|
import React from 'react'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import PropTypes from 'prop-types'; |
|
|
|
|
|
import { Link } from 'dva/router'; |
|
|
import DocumentTitle from 'react-document-title'; |
|
|
import DocumentTitle from 'react-document-title'; |
|
|
import { Icon } from 'antd'; |
|
|
import { Icon } from 'antd'; |
|
|
import GlobalFooter from '../components/GlobalFooter'; |
|
|
import GlobalFooter from '../components/GlobalFooter'; |
|
|
@ -44,10 +45,12 @@ class UserLayout extends React.PureComponent { |
|
|
<div className={styles.container}> |
|
|
<div className={styles.container}> |
|
|
<div className={styles.top}> |
|
|
<div className={styles.top}> |
|
|
<div className={styles.header}> |
|
|
<div className={styles.header}> |
|
|
<img alt="" className={styles.logo} src="https://gw.alipayobjects.com/zos/rmsportal/NGCCBOENpgTXpBWUIPnI.svg" /> |
|
|
<Link to="/"> |
|
|
<span className={styles.title}>Ant Design</span> |
|
|
<img alt="" className={styles.logo} src="https://gw.alipayobjects.com/zos/rmsportal/NGCCBOENpgTXpBWUIPnI.svg" /> |
|
|
|
|
|
<span className={styles.title}>Ant Design</span> |
|
|
|
|
|
</Link> |
|
|
</div> |
|
|
</div> |
|
|
<p className={styles.desc}>Ant Design 是东半球最具影响力的 Web 设计规范</p> |
|
|
<p className={styles.desc}>Ant Design 是西湖区最具影响力的 Web 设计规范</p> |
|
|
</div> |
|
|
</div> |
|
|
{children} |
|
|
{children} |
|
|
<GlobalFooter className={styles.footer} links={links} copyright={copyright} /> |
|
|
<GlobalFooter className={styles.footer} links={links} copyright={copyright} /> |
|
|
|