This commit is contained in:
yiqiuyang
2025-10-16 15:48:14 +08:00
parent 05da1f7fbb
commit e5569b37a1
39 changed files with 612 additions and 330 deletions

64
public/config/nav.js Normal file
View File

@ -0,0 +1,64 @@
window.nav = {
header: [
{id: 1, label: '首页', url: '/', hasChildren: false},
{
id: 2,
label: '解决方案',
url: '/product',
hasChildren: true,
children: [
{
id: 2.1,
label: '空域感知矩阵',
url: '/product/hardwareSystem',
hasChildren: false,
},
{
id: 2.2,
label: '低空智控中枢',
url: '/product/softwareSystem',
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/hardwareSystem'},
{id: 1.2, label: '低空智控中枢', url: '/product/softwareSystem'},
],
},
// {
// 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'},
],
},
],
}