1
0
Files
ag-index/nuxt-web/pages/products/ecommerce/obh.vue
2026-04-20 09:45:20 +08:00

16 lines
1.3 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 setup lang="ts">
import { ecommerceDetails } from '~/data/products'
const page = ecommerceDetails.obh
useSeo({ title: page.title, description: page.description, keywords: '岸基科技,网上业务大厅,客户服务平台', canonicalPath: '/products/ecommerce/obh' })
const breadcrumbItems = [{ label: '首页', to: '/' }, { label: '港航电商系列产品', to: '/products/ecommerce' }, { label: page.title }]
</script>
<template>
<ProductDetailLayout :title="page.title" :description="page.description" :banner-image="page.bannerImage" :breadcrumb-items="breadcrumbItems" :related-products="page.relatedProducts" :related-cases="page.cases.map((item) => ({ label: item.title, to: item.to }))">
<ProductFeatureTabs :heading="page.featureHeading" :summary="page.featureSummary" :sections="page.featureSections" />
<ProductArchitectureCard :image="page.architectureImage" :image-alt="page.architectureAlt" description="从底层到应用构建全链路协同骨架" />
<ProductAdvantagesGrid heading="产品优势" summary="以高可用架构和数据联通能力支撑港航客户服务持续升级" :items="page.advantages" />
<ProductCaseCards heading="客户案例" summary="真实项目已经落地产品价值看得见" :items="page.cases" />
</ProductDetailLayout>
</template>