Files
portal/public/config/nav.js
2026-07-30 17:12:26 +08:00

78 lines
2.5 KiB
JavaScript

window.nav = {
header: [
{id: 1, label: '首页', url: '/', mobileUrl: '/m/homepage', hasChildren: false},
{
id: 2,
label: '解决方案',
url: '/product',
mobileUrl: '/m/product',
hasChildren: true,
children: [
{
id: 2.1,
label: '空域感知矩阵',
url: '/product/hardwareSystem',
mobileUrl: '/m/product/hardwareSystem',
hasChildren: false,
},
{
id: 2.2,
label: '低空智控中枢',
url: '/product/softwareSystem',
mobileUrl: '/m/product/softwareSystem',
hasChildren: false,
},
],
},
// {id: 3, label: '服务与支撑', url: '/services', mobileUrl: '/m/services', hasChildren: false},
{id: 4, label: '新闻中心', url: '/news', mobileUrl: '/m/news', hasChildren: false},
{id: 5, label: '关于我们', url: '/about', mobileUrl: '/m/about', hasChildren: false},
{id: 6, label: '联系我们', url: '/link', mobileUrl: '/m/link', hasChildren: false},
{id: 7, label: '资源下载', url: '/download', mobileUrl: '/m/download', hasChildren: false},
{id: 8, label: '演示系统', url: window.config.featureUrl, hasChildren: false, open: true},
],
footer: [
{
id: 1,
label: '解决方案',
url: '',
hasChildren: true,
children: [
{id: 1.1, label: '空域感知矩阵', url: '/product/hardwareSystem', mobileUrl: '/m/product/hardwareSystem'},
{id: 1.2, label: '低空智控中枢', url: '/product/softwareSystem', mobileUrl: '/m/product/softwareSystem'},
],
},
// {
// id: 2,
// label: '服务与支撑',
// url: '/services',
// mobileUrl: '/m/services',
// hasChildren: false,
// },
{
id: 3,
label: '资源下载',
url: '/download',
hasChildren: true,
children: [
{id: 3.1, label: '资源下载', url: '/download', mobileUrl: '/m/download'},
{id: 3.2, label: 'Android', url: '', downloadType: 'android'},
{id: 3.3, label: 'iOS', url: '', downloadType: 'ios'},
{id: 3.4, label: '客户端', url: '', downloadType: 'pc'},
],
},
// {id: 4, label: '新闻中心', url: '/news', mobileUrl: '/m/news', hasChildren: false},
{
id: 5,
label: '关于燃谷',
url: '',
hasChildren: true,
children: [
{id: 5.1, label: '公司简介', url: '/about', mobileUrl: '/m/about'},
{id: 5.2, label: '联系我们', url: '/link', mobileUrl: '/m/link'},
],
},
],
}