import React from 'react';
import { Link, Route } from 'dva/router';
import DocumentTitle from 'react-document-title';
import { Icon } from 'antd';
import GlobalFooter from '../components/GlobalFooter';
import styles from './UserLayout.less';
import logo from '../assets/logo.svg';
import { getRoutes } from '../utils/utils';
const links = [{
key: 'help',
title: '帮助',
href: '',
}, {
key: 'privacy',
title: '隐私',
href: '',
}, {
key: 'terms',
title: '条款',
href: '',
}];
const copyright =
Copyright 2018 蚂蚁金服体验技术部出品
;
class UserLayout extends React.PureComponent {
getPageTitle() {
const { routerData, location } = this.props;
const { pathname } = location;
let title = 'Ant Design Pro';
if (routerData[pathname] && routerData[pathname].name) {
title = `${routerData[pathname].name} - Ant Design Pro`;
}
return title;
}
render() {
const { routerData, match } = this.props;
return (
Ant Design
Ant Design 是西湖区最具影响力的 Web 设计规范
{
getRoutes(match.path, routerData).map(item =>
(
)
)
}
);
}
}
export default UserLayout;