From 2a9f219e565de64378370d771f84c5a90170a9a7 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Tue, 7 Oct 2025 14:26:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=A1=8C=E4=B8=9A=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E6=96=B9=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/AppHeader.vue | 61 ++++++++++++++----- .../industrySolutions/ElectCar/item1.vue | 13 ++++ app/pages/industrySolutions/ElectCar.vue | 14 +++++ 3 files changed, 73 insertions(+), 15 deletions(-) create mode 100644 app/components/industrySolutions/ElectCar/item1.vue create mode 100644 app/pages/industrySolutions/ElectCar.vue 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