19 lines
337 B
JavaScript
19 lines
337 B
JavaScript
/**
|
|
* 系统菜单配置(支持多级菜单)
|
|
*/
|
|
window.MenuConfig = [
|
|
{
|
|
id: 'settings',
|
|
icon: '⚙️',
|
|
title: '系统设置',
|
|
url: 'modules/settings.html',
|
|
children: [
|
|
{
|
|
id: 'country',
|
|
icon: '🌎',
|
|
title: '国家管理',
|
|
url: 'modules/country.html'
|
|
}
|
|
]
|
|
}
|
|
]; |