|
|
@@ -178,6 +178,19 @@
|
|
|
|
|
|
const solution = computed(() => solutionPoints.find((item) => item.id === route.params.id))
|
|
|
|
|
|
+ useSeoMeta({
|
|
|
+ title: () => `${solution.value?.title || '解决方案'} - 绘家科技`,
|
|
|
+ description: () =>
|
|
|
+ solution.value?.description ||
|
|
|
+ '绘家科技致力于为物业管理公司提供数字化转型解决方案,提升服务品质与业主满意度。',
|
|
|
+ keywords: () =>
|
|
|
+ `${solution.value?.title},智慧物业,解决方案,绘家科技,${solution.value?.corePoints.points.map((p) => p.point).join(',')}`,
|
|
|
+ ogTitle: () => `${solution.value?.title || '解决方案'} - 绘家科技`,
|
|
|
+ ogDescription: () =>
|
|
|
+ solution.value?.description ||
|
|
|
+ '绘家科技致力于为物业管理公司提供数字化转型解决方案,提升服务品质与业主满意度。',
|
|
|
+ })
|
|
|
+
|
|
|
const activeCaseIndex = ref(0)
|
|
|
const currentCase = computed(() => {
|
|
|
if (!solution.value?.typicalCases?.cases?.length) return null
|