- Spring Boot 后端服务 (hss-home-service) - delivery-miniapp 配送小程序 - website 官网 (Nuxt) - docs 架构设计文档 - Docker 容器化部署配置 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
22 lines
764 B
Vue
22 lines
764 B
Vue
<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>
|