mirror of
https://github.com/TangSengDaoDao/TangSengDaoDaoManager
synced 2025-06-07 01:58:18 +00:00
47 lines
969 B
TypeScript
47 lines
969 B
TypeScript
const home: Menu.MenuOptions = {
|
|
component: '/tool/appupdate',
|
|
name: 'tool',
|
|
path: '/tool',
|
|
meta: {
|
|
icon: 'i-bd-tool',
|
|
isAffix: false,
|
|
isFull: false,
|
|
isHide: false,
|
|
isKeepAlive: true,
|
|
isLink: '',
|
|
index: 7,
|
|
title: '工具'
|
|
},
|
|
children: [
|
|
{
|
|
component: '/tool/appupdate',
|
|
name: 'toolAppupdate',
|
|
path: '/tool/appupdate',
|
|
meta: {
|
|
icon: 'i-bd-application-one',
|
|
isAffix: false,
|
|
isFull: false,
|
|
isHide: false,
|
|
isKeepAlive: true,
|
|
isLink: '',
|
|
title: 'APP升级'
|
|
}
|
|
},
|
|
{
|
|
component: '/tool/systemrobotmenu',
|
|
name: 'toolSystemrobotmenu',
|
|
path: '/tool/systemrobotmenu',
|
|
meta: {
|
|
icon: 'i-bd-application-two',
|
|
isAffix: false,
|
|
isFull: false,
|
|
isHide: true,
|
|
isKeepAlive: true,
|
|
isLink: '',
|
|
title: '系统机器人菜单列表'
|
|
}
|
|
}
|
|
]
|
|
};
|
|
export default home;
|