From 9719647407c15c9fd365174cca7350ff081ae14b Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Tue, 7 Oct 2025 10:35:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=B3=E4=BA=8E=E6=88=91=E4=BB=AC=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E6=B7=BB=E5=8A=A0=E4=BA=8C=E7=BB=B4=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/about/aboutUs.vue | 281 +++++++++++++++++++++++++++++++ 1 file changed, 281 insertions(+) diff --git a/app/components/about/aboutUs.vue b/app/components/about/aboutUs.vue index 2a0d3b6..f23c758 100644 --- a/app/components/about/aboutUs.vue +++ b/app/components/about/aboutUs.vue @@ -52,6 +52,108 @@ const stats = [ {number: '50+', label: '技术专利'}, {number: '5年+', label: '行业经验'} ] + +// 发展历程 +const timeline = [ + { + year: '2018', + title: '公司成立', + description: '创特物联正式成立,专注于物联网技术研发' + }, + { + year: '2019', + title: '产品上线', + description: '首款共享电动车管理系统正式上线运营' + }, + { + year: '2020', + title: '业务扩展', + description: '拓展至共享汽车、共享充电桩等多个领域' + }, + { + year: '2021', + title: '技术突破', + description: '获得多项技术专利,建立完善的技术体系' + }, + { + year: '2022', + title: '市场领先', + description: '成为行业领先的共享经济解决方案提供商' + }, + { + year: '2023', + title: '持续创新', + description: '推出AI智能调度系统,引领行业技术发展' + } +] + +// 合作伙伴 +const partners = [ + { + name: '华为云', + logo: 'https://picsum.photos/120/60?random=partner1', + description: '云计算服务合作伙伴' + }, + { + name: '腾讯云', + logo: 'https://picsum.photos/120/60?random=partner2', + description: '大数据分析合作伙伴' + }, + { + name: '阿里云', + logo: 'https://picsum.photos/120/60?random=partner3', + description: '物联网平台合作伙伴' + }, + { + name: '百度AI', + logo: 'https://picsum.photos/120/60?random=partner4', + description: '人工智能技术合作伙伴' + }, + { + name: '京东物流', + logo: 'https://picsum.photos/120/60?random=partner5', + description: '物流配送合作伙伴' + }, + { + name: '滴滴出行', + logo: 'https://picsum.photos/120/60?random=partner6', + description: '出行服务合作伙伴' + } +] + +// 荣誉资质 +const honors = [ + { + title: '高新技术企业', + icon: 'i-lucide-award', + year: '2020' + }, + { + title: 'ISO9001质量认证', + icon: 'i-lucide-shield-check', + year: '2019' + }, + { + title: '软件著作权', + icon: 'i-lucide-file-text', + year: '2021' + }, + { + title: '发明专利', + icon: 'i-lucide-lightbulb', + year: '2022' + }, + { + title: '行业创新奖', + icon: 'i-lucide-trophy', + year: '2023' + }, + { + title: '优秀服务商', + icon: 'i-lucide-star', + year: '2023' + } +]