新增行业解决方案
This commit is contained in:
parent
e6931ee4f6
commit
2a9f219e56
|
|
@ -11,32 +11,63 @@ const items = computed<NavigationMenuItem[]>(() => [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '共享解决方案',
|
label: '共享解决方案',
|
||||||
|
|
||||||
active: route.path.startsWith('/sharedSolutions'),
|
active: route.path.startsWith('/sharedSolutions'),
|
||||||
children: [
|
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: '共享电动车',
|
label: '共享电动车',
|
||||||
icon: 'i-lucide-file-text',
|
icon: 'i-lucide-car',
|
||||||
description: '通过扫码开锁,循环共享',
|
|
||||||
to: '/sharedSolutions/eBike',
|
|
||||||
}, {
|
|
||||||
label: '共享电动车',
|
|
||||||
icon: 'i-lucide-file-text',
|
|
||||||
description: '通过扫码开锁,循环共享',
|
|
||||||
to: '/sharedSolutions/eBike',
|
|
||||||
}, {
|
|
||||||
label: '共享电动车',
|
|
||||||
icon: 'i-lucide-file-text',
|
|
||||||
description: '通过扫码开锁,循环共享',
|
description: '通过扫码开锁,循环共享',
|
||||||
to: '/sharedSolutions/eBike',
|
to: '/sharedSolutions/eBike',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: '共享充电宝',
|
||||||
|
icon: 'i-lucide-battery',
|
||||||
|
description: '企业提供的充电租赁设备,用户扫码取出后即可使用,用完后就近归还',
|
||||||
|
to: '/sharedSolutions/powerbank',
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '行业解决方案',
|
label: '行业解决方案',
|
||||||
to: 'https://go.nuxt.com/figma-ui',
|
active: route.path.startsWith('/industrySolutions'),
|
||||||
target: '_blank'
|
children: [
|
||||||
|
{
|
||||||
|
label: '智能电动车',
|
||||||
|
icon: 'i-lucide-file-text',
|
||||||
|
description: '打造智能电动车时代方便用户的出行,让骑车出行便捷',
|
||||||
|
to: '/industrySolutions/ElectCar',
|
||||||
|
}, {
|
||||||
|
label: '共享电动车',
|
||||||
|
icon: 'i-lucide-file-text',
|
||||||
|
description: '通过扫码开锁,循环共享',
|
||||||
|
to: '/sharedSolutions/eBike',
|
||||||
|
}
|
||||||
|
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '软件应用开发',
|
label: '软件应用开发',
|
||||||
|
|
|
||||||
13
app/components/industrySolutions/ElectCar/item1.vue
Normal file
13
app/components/industrySolutions/ElectCar/item1.vue
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
145
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
14
app/pages/industrySolutions/ElectCar.vue
Normal file
14
app/pages/industrySolutions/ElectCar.vue
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<IndustrySolutionsElectCarItem1/>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue
Block a user