import React, { Component, Fragment } from 'react'; import { formatMessage } from 'umi/locale'; import { connect } from 'dva'; import Link from 'umi/link'; import { Icon } from 'antd'; import GlobalFooter from '@/components/GlobalFooter'; import DocumentTitle from 'react-document-title'; import SelectLang from '@/components/SelectLang'; import styles from './UserLayout.less'; import logo from '../assets/logo.svg'; import getPageTitle from '@/utils/getPageTitle'; const links = [ { key: 'help', title: formatMessage({ id: 'layout.user.link.help' }), href: '', }, { key: 'privacy', title: formatMessage({ id: 'layout.user.link.privacy' }), href: '', }, { key: 'terms', title: formatMessage({ id: 'layout.user.link.terms' }), href: '', }, ]; const copyright = ( 请使用谷歌浏览器(Chrome)获取最佳用户体验 ); class UserLayout extends Component { componentDidMount() { // const { // dispatch, // route: { routes, authority }, // } = this.props; // dispatch({ // type: 'menu/getMenuData', // payload: { routes, authority }, // }); } render() { const { children, location: { pathname }, breadcrumbNameMap, } = this.props; return (
logo 小商城管理平台
{/*
TODO....
*/}
{children}
); } } export default connect(({ menu: menuModel }) => ({ menuData: menuModel.menuData, breadcrumbNameMap: menuModel.breadcrumbNameMap, }))(UserLayout);