add logs overview page
This commit is contained in:
parent
63131280d0
commit
7d213f4eae
|
@ -49,7 +49,7 @@ export default [
|
|||
path: '/logs',
|
||||
name: 'logs',
|
||||
icon: 'search',
|
||||
component: './List/TableList',
|
||||
component: './Logs/Overview',
|
||||
},
|
||||
|
||||
//alertings
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
import React from 'react';
|
||||
import { formatMessage } from 'umi/locale';
|
||||
import Link from 'umi/link';
|
||||
import Exception from '@/components/Exception';
|
||||
|
||||
|
||||
export default ()=>(
|
||||
<Exception
|
||||
type="403"
|
||||
desc={formatMessage({ id: 'app.exception.description.403' })}
|
||||
linkElement={Link}
|
||||
backText={formatMessage({ id: 'app.exception.back' })}
|
||||
/>
|
||||
);
|
Loading…
Reference in New Issue