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

33 lines
2.1 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 { useSeo } from '~/composables/useSeo'
useSeo({ title: '服务闭环', description: '8 个阶段无缝衔接:需求受理→能力评估→方案制定→智能派单→上门执行→过程监管→验收评价→结算归档。' })
</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">
<ServiceLoopFlow />
</div>
</section>
<section class="py-20 bg-white">
<div class="section-container">
<h2 class="section-title">数据完整性保障</h2>
<div class="grid md:grid-cols-3 gap-6 mt-12 text-center">
<div class="p-6"><div class="w-12 h-12 mx-auto mb-3 rounded-xl bg-primary-50 text-primary flex items-center justify-center"><AppIcon name="database" class="w-6 h-6"/></div><h3 class="font-bold mb-2">环节联动</h3><p class="text-sm text-text-secondary">上游数据自动驱动下游评估结果 方案制定签署生效 服务计划</p></div>
<div class="p-6"><div class="w-12 h-12 mx-auto mb-3 rounded-xl bg-accent-50 text-accent flex items-center justify-center"><AppIcon name="check" class="w-6 h-6"/></div><h3 class="font-bold mb-2">状态校验</h3><p class="text-sm text-text-secondary">每步流转必须满足前置条件未签署方案不能生成工单未验收工单不能结算</p></div>
<div class="p-6"><div class="w-12 h-12 mx-auto mb-3 rounded-xl bg-cta/10 text-cta flex items-center justify-center"><AppIcon name="clipboard" class="w-6 h-6"/></div><h3 class="font-bold mb-2">版本可追溯</h3><p class="text-sm text-text-secondary">评估报告方案快照价格规则签署记录全部版本化管理不可覆盖</p></div>
</div>
</div>
</section>
<CtaSection />
</template>