Files
Home-Care/hss-home-service/website/pages/security.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

22 lines
764 B
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 { useSeo } from '~/composables/useSeo'
useSeo({ title: '安全合规', description: 'RBAC 权限体系、数据分类分级、授权同意管理、审计日志追溯、脱敏展示、合规留痕。' })
</script>
<template>
<section class="py-20 bg-gradient-to-br from-primary-700 to-primary-900 text-white">
<div class="section-container text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4">安全合规</h1>
<p class="text-xl text-blue-100 max-w-2xl mx-auto">医疗级安全合规体系满足政企医疗行业标准</p>
</div>
</section>
<section class="py-20 bg-surface">
<div class="section-container">
<SecurityGrid />
</div>
</section>
<CtaSection />
</template>