ct/app/pages/about.vue
2025-10-07 10:12:59 +08:00

159 lines
4.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script lang="ts" setup>
// 设置页面SEO信息
useSeoMeta({
title: '关于我们 - 创特物联 | 共享经济解决方案专家',
description: '创特物联专注于共享经济解决方案的物联网科技公司成立于2018年。我们致力于为共享出行、共享生活等领域提供全方位的技术解决方案已为500+客户提供优质服务。',
keywords: '创特物联,共享经济,物联网,共享电动车,共享汽车,共享充电桩,共享解决方案,物联网科技,北京物联网公司',
author: '创特物联',
robots: 'index, follow',
language: 'zh-CN',
// Open Graph
ogTitle: '关于我们 - 创特物联 | 共享经济解决方案专家',
ogDescription: '创特物联专注于共享经济解决方案的物联网科技公司拥有专业的技术团队和丰富的行业经验已为500+客户提供优质服务。',
ogImage: 'https://picsum.photos/1200/630?random=about',
ogImageAlt: '创特物联公司介绍',
ogType: 'website',
ogUrl: 'https://ccttiot.com/about',
ogSiteName: '创特物联',
ogLocale: 'zh_CN',
// Twitter Card
twitterCard: 'summary_large_image',
twitterTitle: '关于我们 - 创特物联 | 共享经济解决方案专家',
twitterDescription: '创特物联专注于共享经济解决方案的物联网科技公司,拥有专业的技术团队和丰富的行业经验。',
twitterImage: 'https://picsum.photos/1200/630?random=about',
twitterImageAlt: '创特物联公司介绍',
twitterSite: '@ccttiot',
twitterCreator: '@ccttiot',
// Additional meta tags
canonical: 'https://ccttiot.com/about',
'theme-color': '#2563eb',
'msapplication-TileColor': '#2563eb',
'application-name': '创特物联',
'apple-mobile-web-app-title': '创特物联',
'apple-mobile-web-app-capable': 'yes',
'apple-mobile-web-app-status-bar-style': 'default',
'format-detection': 'telephone=no',
'mobile-web-app-capable': 'yes',
'msapplication-tap-highlight': 'no'
})
// 设置页面标题
useHead({
title: '关于我们 - 创特物联 | 共享经济解决方案专家',
htmlAttrs: {
lang: 'zh-CN'
},
link: [
{
rel: 'canonical',
href: 'https://ccttiot.com/about'
}
]
})
// 结构化数据 - 公司信息
const organizationSchema = {
'@context': 'https://schema.org',
'@type': 'Organization',
name: '创特物联',
alternateName: 'CCTT IoT',
url: 'https://ccttiot.com',
logo: 'https://cbu01.alicdn.com/img/ibank/O1CN01uZ3fTP1Bs31lE2Mlf_!!0-0-cib.jpg',
description: '创特物联专注于共享经济解决方案的物联网科技公司,致力于通过技术创新推动行业发展。',
foundingDate: '2018',
address: {
'@type': 'PostalAddress',
streetAddress: '北京市朝阳区科技园区创新大厦A座1001室',
addressLocality: '北京',
addressRegion: '朝阳区',
addressCountry: 'CN'
},
contactPoint: {
'@type': 'ContactPoint',
telephone: '+86-400-123-4567',
contactType: 'customer service',
email: 'contact@ccttiot.com',
availableLanguage: ['Chinese', 'English']
},
sameAs: [
'https://www.linkedin.com/company/ccttiot',
'https://twitter.com/ccttiot',
'https://www.facebook.com/ccttiot'
],
numberOfEmployees: '100+',
industry: '物联网、共享经济',
serviceArea: {
'@type': 'Country',
name: '中国'
}
}
// 结构化数据 - 网站信息
const websiteSchema = {
'@context': 'https://schema.org',
'@type': 'WebSite',
name: '创特物联',
url: 'https://ccttiot.com',
description: '创特物联专注于共享经济解决方案的物联网科技公司',
publisher: {
'@type': 'Organization',
name: '创特物联'
},
potentialAction: {
'@type': 'SearchAction',
target: 'https://ccttiot.com/search?q={search_term_string}',
'query-input': 'required name=search_term_string'
}
}
// 结构化数据 - 面包屑导航
const breadcrumbSchema = {
'@context': 'https://schema.org',
'@type': 'BreadcrumbList',
itemListElement: [
{
'@type': 'ListItem',
position: 1,
name: '首页',
item: 'https://ccttiot.com'
},
{
'@type': 'ListItem',
position: 2,
name: '关于我们',
item: 'https://ccttiot.com/about'
}
]
}
// 添加结构化数据到页面
useHead({
script: [
{
type: 'application/ld+json',
innerHTML: JSON.stringify(organizationSchema)
},
{
type: 'application/ld+json',
innerHTML: JSON.stringify(websiteSchema)
},
{
type: 'application/ld+json',
innerHTML: JSON.stringify(breadcrumbSchema)
}
]
})
</script>
<template>
<div>
<AboutUs/>
</div>
</template>
<style scoped>
/* 页面特定样式 */
</style>