Files
portal/public/nav/index.js
2025-10-13 18:41:08 +08:00

67 lines
1.8 KiB
JavaScript

window.nav = {
header: [
{ id: 1, label: '首页', url: '/', hasChildren: false },
{
id: 2,
label: '产品中心',
url: '/product',
hasChildren: true,
children: [
{
id: 2.1,
label: '低空监管体系',
url: '/product/monitorSystem',
hasChildren: false,
},
{
id: 2.2,
label: '低空远程识别设备',
url: '/product/remoteDevice',
hasChildren: false,
},
],
},
// {id: 3, label: '服务与支撑', url: '/services', hasChildren: false},
{ id: 4, label: '新闻中心', url: '/news', hasChildren: false },
{ id: 5, label: '关于我们', url: '/about', hasChildren: false },
{ id: 6, label: '联系我们', url: '/link', hasChildren: false },
],
footer: [
{
id: 1,
label: '产品中心',
url: '',
hasChildren: true,
children: [
{ id: 1.1, label: '低空监管体系', url: '/product/monitorSystem' },
{ id: 1.2, label: '低空远程识别设备', url: '/product/remoteDevice' },
{ id: 1.3, label: '智能加载服务', url: '/product' },
{ id: 1.4, label: '智能加载服务', url: '/product' },
],
},
// {
// id: 2,
// label: '服务与支撑',
// url: '/services',
// hasChildren: false,
// },
// {
// id: 3,
// label: '软件下载',
// url: '/download',
// hasChildren: false,
// },
{ id: 4, label: '新闻中心', url: '/news', hasChildren: false },
{
id: 5,
label: '关于燃谷',
url: '',
hasChildren: true,
children: [
{ id: 5.1, label: '公司简介', url: '/about' },
{ id: 5.2, label: '联系我们', url: '/link' },
],
},
],
}