add logs overview page

This commit is contained in:
medcl 2020-03-28 13:29:23 +08:00
parent 63131280d0
commit 7d213f4eae
2 changed files with 15 additions and 1 deletions

View File

@ -49,7 +49,7 @@ export default [
path: '/logs',
name: 'logs',
icon: 'search',
component: './List/TableList',
component: './Logs/Overview',
},
//alertings

View File

@ -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' })}
/>
);