This commit is contained in:
vipg
2025-11-12 17:24:55 +08:00
parent 8159f03e8c
commit 6dd4a9a41a
16 changed files with 0 additions and 0 deletions

View File

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