- 增加 Home 页面,默认重定向词页面
parent
de8e545e50
commit
60c2cad6e2
|
@ -21,6 +21,15 @@ export default [
|
||||||
Routes: ['src/pages/Authorized'],
|
Routes: ['src/pages/Authorized'],
|
||||||
authority: ['admin', 'user'],
|
authority: ['admin', 'user'],
|
||||||
routes: [
|
routes: [
|
||||||
|
// redirect
|
||||||
|
{ path: '/', redirect: '/home' },
|
||||||
|
// home
|
||||||
|
{
|
||||||
|
path: '/home',
|
||||||
|
name: 'home',
|
||||||
|
icon: 'user',
|
||||||
|
component: './Home/Home',
|
||||||
|
},
|
||||||
// admin
|
// admin
|
||||||
{
|
{
|
||||||
path: '/admin',
|
path: '/admin',
|
||||||
|
@ -34,8 +43,6 @@ export default [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// dashboard
|
|
||||||
{ path: '/', redirect: '/dashboard/analysis' },
|
|
||||||
{
|
{
|
||||||
path: '/dashboard',
|
path: '/dashboard',
|
||||||
name: 'dashboard',
|
name: 'dashboard',
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
import React, { Component } from 'react';
|
||||||
|
import { Button } from 'antd';
|
||||||
|
import AuthorityControl from '../../components/AuthorityControl';
|
||||||
|
import GlobalAuthority from '../../layouts/GlobalAuthorityContext';
|
||||||
|
|
||||||
|
export default class Home extends Component {
|
||||||
|
state = {};
|
||||||
|
|
||||||
|
render() {
|
||||||
|
// 定义认证的属性 TODO
|
||||||
|
const GlobalAuthorityProps = {
|
||||||
|
user: 'admin',
|
||||||
|
login: 'success',
|
||||||
|
authList: {
|
||||||
|
'auth.button': true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<GlobalAuthority.Provider value={GlobalAuthorityProps}>
|
||||||
|
<AuthorityControl authKey="home.button">
|
||||||
|
<Button type="primary">按钮 控制</Button>
|
||||||
|
</AuthorityControl>
|
||||||
|
<h1>home...</h1>
|
||||||
|
</GlobalAuthority.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue