Files
Home-Care/hss-home-service/website/components/AppFooter.vue
comclib c02029a5f3 feat: 初始化居家上门服务系统完整项目代码
- Spring Boot 后端服务 (hss-home-service)
- delivery-miniapp 配送小程序
- website 官网 (Nuxt)
- docs 架构设计文档
- Docker 容器化部署配置

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-19 09:04:49 +08:00

46 lines
2.0 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 { siteName, footerLinks } from '~/data/siteContent'
</script>
<template>
<footer class="bg-gray-900 text-gray-300 pt-16 pb-8">
<div class="section-container">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12">
<div>
<h4 class="text-white font-bold mb-4">{{ siteName }}</h4>
<p class="text-sm text-gray-400">智慧医养居家上门服务闭环管理平台</p>
</div>
<div>
<h5 class="text-white font-semibold mb-3">解决方案</h5>
<ul class="space-y-2">
<li v-for="l in footerLinks.solutions" :key="l.to">
<NuxtLink :to="l.to" class="text-sm text-gray-400 hover:text-white transition-colors">{{ l.label }}</NuxtLink>
</li>
</ul>
</div>
<div>
<h5 class="text-white font-semibold mb-3">应用场景</h5>
<ul class="space-y-2">
<li v-for="l in footerLinks.scenarios" :key="l.to">
<NuxtLink :to="l.to" class="text-sm text-gray-400 hover:text-white transition-colors">{{ l.label }}</NuxtLink>
</li>
</ul>
</div>
<div>
<h5 class="text-white font-semibold mb-3">关于</h5>
<ul class="space-y-2">
<li v-for="l in footerLinks.company" :key="l.to">
<NuxtLink :to="l.to" class="text-sm text-gray-400 hover:text-white transition-colors">{{ l.label }}</NuxtLink>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 pt-8 text-center text-sm text-gray-500">
<p>&copy; {{ new Date().getFullYear() }} {{ siteName }}. All rights reserved.</p>
<p class="mt-1 text-xs">ICP备案号上线前补充 | 公安备案号上线前补充</p>
<p class="mt-2 text-xs text-gray-600">本网站中系统界面图片为功能示意图示意素材待替换为真实系统截图</p>
</div>
</div>
</footer>
</template>