diff --git a/app/components/AppHeader.vue b/app/components/AppHeader.vue index 421714a..52ede4c 100644 --- a/app/components/AppHeader.vue +++ b/app/components/AppHeader.vue @@ -11,32 +11,63 @@ const items = computed(() => [ }, { label: '共享解决方案', - active: route.path.startsWith('/sharedSolutions'), children: [ + { + label: '共享单车', + icon: 'i-lucide-bike', + description: '一种新型环保共享经济,最大化的利用了公共道路通过率', + to: '/sharedSolutions/bike', + }, + { + label: '景区共享电动车', + icon: 'i-lucide-map-pin', + description: '有助于缓解交通堵塞,以及公路的磨损,减少空气污染,降低对能量的依赖性', + to: '/sharedSolutions/scenicEbike', + }, + { + label: '共享滑板车', + icon: 'i-lucide-scooter', + description: '新的共享出行方式,轻便省力', + to: '/sharedSolutions/scooter', + }, + { + label: '共享陪护床', + icon: 'i-lucide-bed', + description: '立足医院民生需求而诞生,解决医患家属的休息问题', + to: '/sharedSolutions/bed', + }, { label: '共享电动车', - icon: 'i-lucide-file-text', - description: '通过扫码开锁,循环共享', - to: '/sharedSolutions/eBike', - }, { - label: '共享电动车', - icon: 'i-lucide-file-text', - description: '通过扫码开锁,循环共享', - to: '/sharedSolutions/eBike', - }, { - label: '共享电动车', - icon: 'i-lucide-file-text', + icon: 'i-lucide-car', description: '通过扫码开锁,循环共享', to: '/sharedSolutions/eBike', }, - + { + label: '共享充电宝', + icon: 'i-lucide-battery', + description: '企业提供的充电租赁设备,用户扫码取出后即可使用,用完后就近归还', + to: '/sharedSolutions/powerbank', + } ] }, { label: '行业解决方案', - to: 'https://go.nuxt.com/figma-ui', - target: '_blank' + active: route.path.startsWith('/industrySolutions'), + children: [ + { + label: '智能电动车', + icon: 'i-lucide-file-text', + description: '打造智能电动车时代方便用户的出行,让骑车出行便捷', + to: '/industrySolutions/ElectCar', + }, { + label: '共享电动车', + icon: 'i-lucide-file-text', + description: '通过扫码开锁,循环共享', + to: '/sharedSolutions/eBike', + } + + ] }, { label: '软件应用开发', diff --git a/app/components/industrySolutions/ElectCar/item1.vue b/app/components/industrySolutions/ElectCar/item1.vue new file mode 100644 index 0000000..cfe0640 --- /dev/null +++ b/app/components/industrySolutions/ElectCar/item1.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/app/pages/industrySolutions/ElectCar.vue b/app/pages/industrySolutions/ElectCar.vue new file mode 100644 index 0000000..1d89638 --- /dev/null +++ b/app/pages/industrySolutions/ElectCar.vue @@ -0,0 +1,14 @@ + + + + + \ No newline at end of file