2020-09-28 20:19:10 +08:00
|
|
|
import type { MenuModule } from '/@/router/types.d';
|
|
|
|
|
const menu: MenuModule = {
|
|
|
|
|
orderNo: 500,
|
|
|
|
|
menu: {
|
|
|
|
|
name: '异常页',
|
|
|
|
|
path: '/exception',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/404',
|
|
|
|
|
name: '404',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/500',
|
|
|
|
|
name: '500',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/net-work-error',
|
|
|
|
|
name: '网络错误',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/page-time-out',
|
|
|
|
|
name: '页面超时',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/not-data',
|
|
|
|
|
name: '无数据',
|
|
|
|
|
},
|
2020-10-18 21:55:21 +08:00
|
|
|
{
|
|
|
|
|
path: '/error-log',
|
|
|
|
|
name: '错误日志',
|
|
|
|
|
},
|
2020-09-28 20:19:10 +08:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
export default menu;
|