feat: 初始化医护端与患者端页面骨架

完成两个 Vite 应用的基础工程化配置、路由、状态管理及第一版业务页面,当前使用演示数据,尚未接入真实后端接口。
This commit is contained in:
yelan
2026-08-27 11:27:16 +08:00
parent 01827bf304
commit 36fa15487c
28 changed files with 2089 additions and 37 deletions

View File

@@ -4,7 +4,12 @@
## 当前状态 ## 当前状态
当前仅完成项目目录和说明文档,尚未初始化 Vite也尚未生成业务代码。 已完成两个 Vite 应用的基础初始化、ESLint + Prettier 工程化配置,以及第一版业务页面骨架:
- `clinical-web`:医护端布局、工作台、签署任务、文书库、报表和设置页面;
- `patient-h5`:签署入口、文书确认、签署人信息、手写签名和结果页面;
- 当前页面使用演示数据,尚未接入真实后端接口;
- `packages` 目录暂时保留,等接口和公共类型稳定后再接入共享包。
## 项目定位 ## 项目定位
@@ -67,12 +72,11 @@ medical-sign/
## 技术栈规划 ## 技术栈规划
- 医护端Vue 3 + TypeScript + Vite + Element Plus - 医护端Vue 3 + TypeScript + Vite + Vue Router + Pinia + Element Plus + Axios
- 患者端Vue 3 + TypeScript + Vite + Vant - 患者端Vue 3 + TypeScript + Vite + Vue Router + Axios移动端先使用原生 Canvas 完成签名演示
- 接口数据:优先使用 OpenAPI 生成类型安全的客户端 - 接口数据:先通过 Axios 封装请求,接口稳定后再评估 OpenAPI 类型生成
- 服务端数据TanStack Vue Query - 服务端数据:医护端后续再评估 TanStack Vue Query
- 本地状态Pinia 或组件状态; - 测试:待最小业务闭环稳定后再补充 Vitest + Playwright。
- 测试Vitest + Playwright。
## 开发原则 ## 开发原则
@@ -98,8 +102,8 @@ patient-h5/dist/ → 患者手机签署网页
## 后续工作 ## 后续工作
1. 初始化两个 Vite 应用 1. 用真实调研结果校准页面字段、状态和角色权限
2. 配置 workspace 和公共类型包 2. 完成“医护端发起 → 患者 H5 签署 → 结果回传”的最小闭环
3. 完成“医护端发起 → 患者 H5 签署 → 结果回传”的最小闭环 3. 再接入 `packages` 中的公共类型和接口客户端
4. 验证电子病历 iframe、单点登录和签字板调用 4. 验证电子病历 iframe、单点登录和签字板调用
5. 补充收费拦截、动态补签和急诊例外流程。 5. 补充收费拦截、动态补签和急诊例外流程。

View File

@@ -60,7 +60,7 @@
- 急诊抢救紧急例外; - 急诊抢救紧急例外;
- 签署成功但回传失败。 - 签署成功但回传失败。
## 技术栈规划(不一定全用到) ## 当前技术栈
```text ```text
Vue 3 Vue 3
@@ -68,15 +68,12 @@ TypeScript
Vite Vite
Vue Router Vue Router
Pinia Pinia
TanStack Vue Query
Element Plus Element Plus
Axios / OpenAPI Client Axios
pdfjs-dist
ECharts
Vitest
Playwright
``` ```
TanStack Vue Query、PDF 预览、报表图表、自动化测试和签字板适配器暂不接入,等真实接口和业务流程稳定后再按需要增加。
签字板调用应通过独立的 `signature-adapter` 或本地桥接服务封装,业务页面不直接绑定具体厂商 SDK。 签字板调用应通过独立的 `signature-adapter` 或本地桥接服务封装,业务页面不直接绑定具体厂商 SDK。
## 非目标 ## 非目标
@@ -87,4 +84,4 @@ Playwright
## 当前状态 ## 当前状态
当前仅完成目录和说明文档,尚未初始化 Vite 已完成 Vite 基础初始化、路由、Pinia、医护端布局和第一版页面骨架。当前工作台、签署任务、文书库、报表和设置页面均使用演示数据尚未接入真实后端

View File

@@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import HelloWorld from './components/HelloWorld.vue' import { RouterView } from 'vue-router'
</script> </script>
<template> <template>
<HelloWorld /> <RouterView />
</template> </template>

View File

@@ -0,0 +1,6 @@
import axios from 'axios'
export const apiClient = axios.create({
baseURL: import.meta.env.VITE_API_BASE_URL || '/api',
timeout: 10_000,
})

View File

@@ -0,0 +1,73 @@
<script setup lang="ts">
import { computed } from 'vue'
import { RouterView, useRoute, useRouter } from 'vue-router'
import { useAppStore } from '@/stores/app'
const route = useRoute()
const router = useRouter()
const appStore = useAppStore()
const menuItems = [
{ path: '/dashboard', label: '工作台' },
{ path: '/consent-tasks', label: '签署任务' },
{ path: '/documents', label: '文书库' },
{ path: '/reports', label: '统计报表' },
{ path: '/settings', label: '系统设置' },
]
const activeMenu = computed(() => route.path)
const pageTitle = computed(() => String(route.meta.title ?? '医签通'))
function handleMenuSelect(path: string) {
if (path !== route.path) {
void router.push(path)
}
}
</script>
<template>
<el-container class="clinical-layout">
<el-aside width="236px" class="clinical-sidebar">
<div class="brand">
<div class="brand-mark"></div>
<div>
<strong>医签通</strong>
<span>medical-sign</span>
</div>
</div>
<el-menu :default-active="activeMenu" class="clinical-menu" @select="handleMenuSelect">
<el-menu-item v-for="item in menuItems" :key="item.path" :index="item.path">
<span class="menu-dot" />
<span>{{ item.label }}</span>
</el-menu-item>
</el-menu>
<div class="sidebar-footer">
<span class="status-dot" />
<span>演示环境运行中</span>
</div>
</el-aside>
<el-container>
<el-header class="clinical-header">
<div>
<p class="header-kicker">电子知情同意管理平台</p>
<h1>{{ pageTitle }}</h1>
</div>
<div class="user-context">
<div class="user-avatar">{{ appStore.userName.slice(0, 1) }}</div>
<div>
<strong>{{ appStore.userName }}</strong>
<span>{{ appStore.department }}</span>
</div>
</div>
</el-header>
<el-main class="clinical-main">
<RouterView />
</el-main>
</el-container>
</el-container>
</template>

View File

@@ -1,5 +1,10 @@
import { createPinia } from 'pinia'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import { createApp } from 'vue' import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
createApp(App).mount('#app') import App from './App.vue'
import router from './router'
import './styles/index.css'
createApp(App).use(router).use(createPinia()).use(ElementPlus).mount('#app')

View File

@@ -0,0 +1,52 @@
import { createRouter, createWebHistory } from 'vue-router'
import ClinicalLayout from '@/layouts/ClinicalLayout.vue'
import ConsentTasksView from '@/views/consent-tasks/ConsentTasksView.vue'
import DashboardView from '@/views/dashboard/DashboardView.vue'
import DocumentsView from '@/views/documents/DocumentsView.vue'
import ReportsView from '@/views/reports/ReportsView.vue'
import SettingsView from '@/views/settings/SettingsView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
component: ClinicalLayout,
redirect: '/dashboard',
children: [
{
path: 'dashboard',
component: DashboardView,
meta: { title: '工作台' },
},
{
path: 'consent-tasks',
component: ConsentTasksView,
meta: { title: '签署任务' },
},
{
path: 'documents',
component: DocumentsView,
meta: { title: '文书库' },
},
{
path: 'reports',
component: ReportsView,
meta: { title: '统计报表' },
},
{
path: 'settings',
component: SettingsView,
meta: { title: '系统设置' },
},
],
},
{
path: '/:pathMatch(.*)*',
redirect: '/dashboard',
},
],
})
export default router

View File

@@ -0,0 +1,9 @@
import { defineStore } from 'pinia'
export const useAppStore = defineStore('app', {
state: () => ({
userName: '演示医生',
department: '儿科急诊',
environment: '演示环境',
}),
})

View File

@@ -0,0 +1,572 @@
:root {
font-family:
Inter,
ui-sans-serif,
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
sans-serif;
color: #1d2939;
background: #f5f7fa;
font-synthesis: none;
text-rendering: optimizeLegibility;
}
* {
box-sizing: border-box;
}
body {
min-width: 1100px;
min-height: 100vh;
margin: 0;
background: #f5f7fa;
}
button,
input {
font: inherit;
}
button {
cursor: pointer;
}
.clinical-layout {
min-height: 100vh;
}
.clinical-sidebar {
position: relative;
display: flex;
flex-direction: column;
color: #d6e4ff;
background: #11243e;
}
.brand {
display: flex;
gap: 12px;
align-items: center;
height: 88px;
padding: 0 24px;
border-bottom: 1px solid rgb(255 255 255 / 8%);
}
.brand-mark {
display: grid;
width: 38px;
height: 38px;
color: #11243e;
font-size: 20px;
font-weight: 800;
place-items: center;
border-radius: 12px;
background: #93d8ca;
}
.brand strong,
.brand span {
display: block;
}
.brand strong {
color: #fff;
font-size: 18px;
letter-spacing: 2px;
}
.brand span {
margin-top: 3px;
color: #8fa5c1;
font-size: 10px;
letter-spacing: 1.2px;
text-transform: uppercase;
}
.clinical-menu {
flex: 1;
padding: 18px 12px;
border-right: 0;
background: transparent;
}
.clinical-menu .el-menu-item {
height: 48px;
margin: 4px 0;
color: #a8bad2;
border-radius: 10px;
}
.clinical-menu .el-menu-item:hover {
color: #fff;
background: rgb(255 255 255 / 8%);
}
.clinical-menu .el-menu-item.is-active {
color: #fff;
background: #274765;
}
.menu-dot {
width: 6px;
height: 6px;
margin-right: 12px;
border-radius: 50%;
background: currentcolor;
}
.sidebar-footer {
display: flex;
gap: 8px;
align-items: center;
padding: 22px 24px;
color: #8fa5c1;
font-size: 12px;
}
.status-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: #73d5a5;
box-shadow: 0 0 0 4px rgb(115 213 165 / 12%);
}
.clinical-header {
display: flex;
align-items: center;
justify-content: space-between;
height: 88px;
padding: 0 34px;
background: #fff;
border-bottom: 1px solid #e8edf3;
}
.header-kicker,
.eyebrow {
margin: 0 0 6px;
color: #7e91a8;
font-size: 11px;
font-weight: 700;
letter-spacing: 1.3px;
text-transform: uppercase;
}
.clinical-header h1 {
margin: 0;
color: #172b4d;
font-size: 22px;
}
.user-context {
display: flex;
gap: 10px;
align-items: center;
}
.user-avatar {
display: grid;
width: 36px;
height: 36px;
color: #176b67;
font-weight: 700;
place-items: center;
border-radius: 50%;
background: #d9f1ec;
}
.user-context strong,
.user-context span {
display: block;
}
.user-context strong {
color: #263b59;
font-size: 13px;
}
.user-context span {
margin-top: 2px;
color: #91a0b3;
font-size: 11px;
}
.clinical-main {
padding: 32px 34px 48px;
}
.page-section {
max-width: 1440px;
margin: 0 auto;
}
.page-heading {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 24px;
}
.page-heading h2,
.welcome-panel h2 {
margin: 0;
color: #172b4d;
font-size: 28px;
line-height: 1.25;
}
.page-heading p:not(.eyebrow) {
margin: 8px 0 0;
color: #8090a5;
font-size: 13px;
}
.welcome-panel {
display: flex;
align-items: flex-end;
justify-content: space-between;
min-height: 190px;
margin-bottom: 20px;
padding: 30px 34px;
overflow: hidden;
color: #e8f3f5;
border-radius: 18px;
background:
radial-gradient(circle at 84% 18%, rgb(147 216 202 / 24%), transparent 28%),
linear-gradient(125deg, #173958, #195d69);
}
.welcome-panel h2 {
max-width: 570px;
color: #fff;
font-size: 27px;
}
.welcome-copy {
max-width: 600px;
margin: 14px 0 0;
color: #b9d1d9;
font-size: 14px;
line-height: 1.7;
}
.primary-button,
.secondary-button {
min-height: 40px;
padding: 0 18px;
color: #123148;
font-size: 13px;
font-weight: 700;
border: 0;
border-radius: 9px;
background: #9bdfd0;
}
.primary-button:hover {
background: #b3ebde;
}
.secondary-button {
color: #176b67;
border: 1px solid #bfe2dc;
background: #eefaf7;
}
.stats-row {
margin-bottom: 16px;
}
.stat-card,
.content-card {
border: 1px solid #e9eef4;
border-radius: 14px;
}
.stat-card {
min-height: 132px;
}
.stat-card .el-card__body {
padding: 20px;
}
.stat-topline {
display: flex;
align-items: center;
justify-content: space-between;
color: #7f91a8;
font-size: 12px;
}
.stat-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
}
.is-orange {
background: #f5b45e;
}
.is-green {
background: #68c795;
}
.is-red {
background: #eb8d8d;
}
.is-blue {
background: #78aee5;
}
.stat-card strong {
display: block;
margin: 12px 0 4px;
color: #193453;
font-size: 27px;
letter-spacing: -0.5px;
}
.stat-card small {
color: #91a0b3;
font-size: 11px;
}
.dashboard-grid {
margin-bottom: 16px;
}
.content-card .el-card__header {
padding: 20px 22px;
border-bottom: 1px solid #edf1f5;
}
.content-card .el-card__body {
padding: 0 22px;
}
.card-heading {
display: flex;
align-items: center;
justify-content: space-between;
}
.card-heading h3 {
margin: 0;
color: #203957;
font-size: 16px;
}
.text-button {
color: #267d78;
font-size: 12px;
border: 0;
background: transparent;
}
.task-item {
display: flex;
gap: 12px;
align-items: center;
min-height: 72px;
border-bottom: 1px solid #f0f3f6;
}
.task-item:last-child {
border-bottom: 0;
}
.task-avatar {
display: grid;
width: 34px;
height: 34px;
color: #456786;
font-size: 13px;
place-items: center;
border-radius: 10px;
background: #eaf1f6;
}
.task-main {
flex: 1;
min-width: 0;
}
.task-main strong,
.task-main span {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.task-main strong {
color: #304968;
font-size: 13px;
}
.task-main span {
margin-top: 5px;
color: #91a0b3;
font-size: 11px;
}
.reminder-list {
margin: 0;
padding: 2px 0 8px;
list-style: none;
}
.reminder-list li {
display: flex;
gap: 12px;
padding: 16px 0;
border-bottom: 1px solid #f0f3f6;
}
.reminder-list li:last-child {
border-bottom: 0;
}
.reminder-number {
color: #62aa9f;
font-size: 12px;
font-weight: 700;
}
.reminder-list strong,
.reminder-list span {
display: block;
}
.reminder-list strong {
color: #304968;
font-size: 12px;
}
.reminder-list div span {
margin-top: 5px;
color: #91a0b3;
font-size: 11px;
line-height: 1.5;
}
.table-card .el-card__body {
padding: 22px;
}
.filter-bar {
display: flex;
gap: 10px;
margin-bottom: 18px;
}
.filter-bar .el-input {
width: 300px;
}
.filter-bar .el-select {
width: 150px;
}
.detail-grid {
display: grid;
grid-template-columns: 90px 1fr;
gap: 16px 12px;
align-items: center;
color: #8797aa;
font-size: 13px;
}
.detail-grid strong {
color: #304968;
font-weight: 600;
}
.report-card {
min-height: 142px;
}
.report-card > .el-card__body > span {
color: #7f91a8;
font-size: 12px;
}
.report-card > .el-card__body > strong {
margin-top: 15px;
}
.report-placeholder {
min-height: 330px;
}
.empty-chart {
display: grid;
min-height: 280px;
color: #8797aa;
text-align: center;
place-items: center;
align-content: center;
}
.chart-icon {
display: grid;
width: 52px;
height: 52px;
margin-bottom: 12px;
color: #2f8d83;
font-size: 24px;
place-items: center;
border-radius: 16px;
background: #e8f7f3;
}
.empty-chart h3 {
margin: 0;
color: #304968;
font-size: 15px;
}
.empty-chart p {
margin: 8px 0 0;
font-size: 12px;
}
.settings-card {
max-width: 780px;
}
.settings-card .el-card__body {
padding: 8px 24px;
}
.setting-row {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 86px;
border-bottom: 1px solid #f0f3f6;
}
.setting-row:last-child {
border-bottom: 0;
}
.setting-row strong,
.setting-row span {
display: block;
}
.setting-row strong {
color: #304968;
font-size: 13px;
}
.setting-row span {
margin-top: 6px;
color: #91a0b3;
font-size: 11px;
}

View File

@@ -0,0 +1,11 @@
export type ConsentTaskStatus = 'pending' | 'signed' | 'rejected' | 'expired'
export interface ConsentTask {
id: string
patientName: string
visitNo: string
documentName: string
source: string
status: ConsentTaskStatus
updatedAt: string
}

View File

@@ -0,0 +1,139 @@
<script setup lang="ts">
import { ref } from 'vue'
import type { ConsentTask, ConsentTaskStatus } from '@/types/consent'
const statusLabel: Record<ConsentTaskStatus, string> = {
pending: '待签署',
signed: '已完成',
rejected: '已拒签',
expired: '已过期',
}
const statusType: Record<ConsentTaskStatus, 'success' | 'warning' | 'danger' | 'info'> = {
pending: 'warning',
signed: 'success',
rejected: 'danger',
expired: 'info',
}
const tasks: ConsentTask[] = [
{
id: 'CT-20260827-001',
patientName: '张*',
visitNo: 'MZ20260827018',
documentName: '儿科急诊特殊检查知情同意书',
source: '儿科急诊 · 门诊',
status: 'pending',
updatedAt: '刚刚',
},
{
id: 'CT-20260827-002',
patientName: '李*',
visitNo: 'MZ20260827012',
documentName: '消化内镜检查知情同意书',
source: '消化内科 · 门诊',
status: 'signed',
updatedAt: '8 分钟前',
},
{
id: 'CT-20260827-003',
patientName: '王*',
visitNo: 'ZY20260826009',
documentName: '麻醉知情同意书',
source: '消化内科 · 住院',
status: 'pending',
updatedAt: '21 分钟前',
},
{
id: 'CT-20260827-004',
patientName: '赵*',
visitNo: 'MZ20260827003',
documentName: '气管插管知情同意书',
source: '儿科急诊 · 门诊',
status: 'rejected',
updatedAt: '今天 09:42',
},
]
const selectedTask = ref<ConsentTask | null>(null)
const isDetailVisible = ref(false)
function getStatusLabel(status: string) {
return statusLabel[status as ConsentTaskStatus] ?? '未知状态'
}
function getStatusType(status: string) {
return statusType[status as ConsentTaskStatus] ?? 'info'
}
function openTask(task: ConsentTask) {
selectedTask.value = task
isDetailVisible.value = true
}
</script>
<template>
<section class="page-section">
<div class="page-heading">
<div>
<p class="eyebrow">任务中心</p>
<h2>签署任务</h2>
<p>按患者就诊和文书任务查看当前签署进度</p>
</div>
<button class="primary-button" type="button">新建签署任务</button>
</div>
<el-card shadow="never" class="content-card table-card">
<div class="filter-bar">
<el-input placeholder="搜索患者、门诊号或任务编号" clearable />
<el-select placeholder="全部状态" clearable>
<el-option label="待签署" value="pending" />
<el-option label="已完成" value="signed" />
<el-option label="已拒签" value="rejected" />
<el-option label="已过期" value="expired" />
</el-select>
<el-button>筛选</el-button>
</div>
<el-table :data="tasks" stripe>
<el-table-column prop="id" label="任务编号" min-width="160" />
<el-table-column prop="patientName" label="患者" width="90" />
<el-table-column prop="visitNo" label="就诊号" min-width="150" />
<el-table-column prop="documentName" label="文书" min-width="270" />
<el-table-column prop="source" label="来源" min-width="160" />
<el-table-column label="状态" width="110">
<template #default="{ row }">
<el-tag :type="getStatusType(row.status)" effect="plain">
{{ getStatusLabel(row.status) }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="updatedAt" label="更新时间" width="120" />
<el-table-column label="操作" width="90" fixed="right">
<template #default="{ row }">
<el-button link type="primary" @click="openTask(row)">查看</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
<el-dialog v-model="isDetailVisible" title="签署任务详情" width="520px">
<template v-if="selectedTask">
<div class="detail-grid">
<span>任务编号</span><strong>{{ selectedTask.id }}</strong> <span>患者</span
><strong>{{ selectedTask.patientName }}</strong> <span>就诊号</span
><strong>{{ selectedTask.visitNo }}</strong> <span>文书</span
><strong>{{ selectedTask.documentName }}</strong>
<span>当前状态</span>
<el-tag :type="statusType[selectedTask.status]">
{{ statusLabel[selectedTask.status] }}
</el-tag>
</div>
</template>
<template #footer>
<el-button @click="isDetailVisible = false">关闭</el-button>
</template>
</el-dialog>
</section>
</template>

View File

@@ -0,0 +1,123 @@
<script setup lang="ts">
import { useRouter } from 'vue-router'
const router = useRouter()
const stats = [
{ label: '待签署任务', value: '12', hint: '较昨日 +3', tone: 'orange' },
{ label: '今日已完成', value: '86', hint: '完成率 91%', tone: 'green' },
{ label: '待回传记录', value: '2', hint: '需要关注', tone: 'red' },
{ label: '本月签署量', value: '2,486', hint: '较上月 +12%', tone: 'blue' },
]
const recentTasks = [
{ patient: '张*', document: '儿科急诊特殊检查知情同意书', status: '待签署', time: '刚刚' },
{ patient: '李*', document: '消化内镜检查知情同意书', status: '已完成', time: '8 分钟前' },
{ patient: '王*', document: '麻醉知情同意书', status: '待回传', time: '21 分钟前' },
]
function goToTasks() {
void router.push('/consent-tasks')
}
</script>
<template>
<section class="page-section">
<div class="welcome-panel">
<div>
<p class="eyebrow">今日概览</p>
<h2>把每一次知情同意准确关联到本次就诊</h2>
<p class="welcome-copy">
从电子病历发起签署任务实时查看患者签署状态并为后续回传和审计保留证据
</p>
</div>
<button class="primary-button" type="button" @click="goToTasks">查看签署任务</button>
</div>
<el-row :gutter="16" class="stats-row">
<el-col v-for="stat in stats" :key="stat.label" :xs="24" :sm="12" :lg="6">
<el-card shadow="never" class="stat-card">
<div class="stat-topline">
<span>{{ stat.label }}</span>
<span class="stat-indicator" :class="'is-' + stat.tone" />
</div>
<strong>{{ stat.value }}</strong>
<small>{{ stat.hint }}</small>
</el-card>
</el-col>
</el-row>
<el-row :gutter="16" class="dashboard-grid">
<el-col :xs="24" :lg="15">
<el-card shadow="never" class="content-card">
<template #header>
<div class="card-heading">
<div>
<p class="eyebrow">实时动态</p>
<h3>最近签署任务</h3>
</div>
<button class="text-button" type="button" @click="goToTasks">查看全部</button>
</div>
</template>
<div class="task-list">
<div v-for="task in recentTasks" :key="task.patient + task.time" class="task-item">
<div class="task-avatar">{{ task.patient.slice(0, 1) }}</div>
<div class="task-main">
<strong>{{ task.document }}</strong>
<span>{{ task.patient }} · {{ task.time }}</span>
</div>
<el-tag
:type="
task.status === '已完成'
? 'success'
: task.status === '待回传'
? 'warning'
: 'info'
"
effect="plain"
>
{{ task.status }}
</el-tag>
</div>
</div>
</el-card>
</el-col>
<el-col :xs="24" :lg="9">
<el-card shadow="never" class="content-card">
<template #header>
<div class="card-heading">
<div>
<p class="eyebrow">下一步</p>
<h3>今日提醒</h3>
</div>
</div>
</template>
<ul class="reminder-list">
<li>
<span class="reminder-number">01</span>
<div>
<strong>2 条签署结果待回传</strong>
<span>请确认电子病历历史记录是否更新</span>
</div>
</li>
<li>
<span class="reminder-number">02</span>
<div>
<strong>签署一项文书版本</strong>
<span>消化内镜文书有一个待审核版本</span>
</div>
</li>
<li>
<span class="reminder-number">03</span>
<div>
<strong>设备状态正常</strong>
<span>护士站签字板最近一次心跳在 1 分钟前</span>
</div>
</li>
</ul>
</el-card>
</el-col>
</el-row>
</section>
</template>

View File

@@ -0,0 +1,60 @@
<script setup lang="ts">
const documents = [
{
name: '儿科急诊特殊检查知情同意书',
department: '儿科急诊',
version: 'V1.2',
status: '使用中',
updatedAt: '2026-08-26',
},
{
name: '消化内镜检查知情同意书',
department: '消化内科',
version: 'V2.0',
status: '使用中',
updatedAt: '2026-08-25',
},
{
name: '息肉切除术知情同意书',
department: '消化内科',
version: 'V1.0',
status: '待审核',
updatedAt: '2026-08-24',
},
]
</script>
<template>
<section class="page-section">
<div class="page-heading">
<div>
<p class="eyebrow">模板中心</p>
<h2>文书库</h2>
<p>维护知情同意文书版本和适用科室</p>
</div>
<button class="primary-button" type="button">新建文书</button>
</div>
<el-card shadow="never" class="content-card table-card">
<el-table :data="documents" stripe>
<el-table-column prop="name" label="文书名称" min-width="300" />
<el-table-column prop="department" label="适用科室" width="140" />
<el-table-column prop="version" label="版本" width="100" />
<el-table-column label="状态" width="120">
<template #default="{ row }">
<el-tag :type="row.status === '使用中' ? 'success' : 'warning'" effect="plain">
{{ row.status }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="updatedAt" label="更新时间" width="140" />
<el-table-column label="操作" width="160">
<template #default>
<el-button link type="primary">预览</el-button>
<el-button link>版本记录</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
</section>
</template>

View File

@@ -0,0 +1,38 @@
<script setup lang="ts">
const reportCards = [
{ label: '本月签署总量', value: '2,486', note: '覆盖 18 个科室' },
{ label: '手机签署占比', value: '78.6%', note: '试运行统计' },
{ label: '平均签署耗时', value: '2m 18s', note: '从发起到完成' },
]
</script>
<template>
<section class="page-section">
<div class="page-heading">
<div>
<p class="eyebrow">数据观察</p>
<h2>统计报表</h2>
<p>查看签署量渠道科室和异常任务统计</p>
</div>
<button class="secondary-button" type="button">导出报表</button>
</div>
<el-row :gutter="16" class="stats-row">
<el-col v-for="card in reportCards" :key="card.label" :xs="24" :sm="8">
<el-card shadow="never" class="stat-card report-card">
<span>{{ card.label }}</span>
<strong>{{ card.value }}</strong>
<small>{{ card.note }}</small>
</el-card>
</el-col>
</el-row>
<el-card shadow="never" class="content-card report-placeholder">
<div class="empty-chart">
<div class="chart-icon"></div>
<h3>趋势图表将在接入真实数据后展示</h3>
<p>当前页面用于确认报表入口和信息层级暂使用演示数据</p>
</div>
</el-card>
</section>
</template>

View File

@@ -0,0 +1,45 @@
<script setup lang="ts">
import { reactive } from 'vue'
const settings = reactive({
enableSms: true,
enableAutoReturn: true,
enableAuditReminder: true,
})
</script>
<template>
<section class="page-section">
<div class="page-heading">
<div>
<p class="eyebrow">平台配置</p>
<h2>系统设置</h2>
<p>管理签署渠道回传策略和审计提醒</p>
</div>
</div>
<el-card shadow="never" class="content-card settings-card">
<div class="setting-row">
<div>
<strong>启用手机短信签署</strong>
<span>允许患者通过短信链接打开签署页面</span>
</div>
<el-switch v-model="settings.enableSms" />
</div>
<div class="setting-row">
<div>
<strong>签署完成后自动回传</strong>
<span>签署成功后将状态和文件回传电子病历</span>
</div>
<el-switch v-model="settings.enableAutoReturn" />
</div>
<div class="setting-row">
<div>
<strong>启用异常审计提醒</strong>
<span>对拒签过期和回传失败任务生成提醒</span>
</div>
<el-switch v-model="settings.enableAuditReminder" />
</div>
</el-card>
</section>
</template>

View File

@@ -40,21 +40,18 @@ patient-h5 只服务于一次或一组知情同意签署,不是完整的移动
- 所有最终状态以服务端结果为准; - 所有最终状态以服务端结果为准;
- 需要兼容微信、手机浏览器和常见 iOS/Android 浏览器。 - 需要兼容微信、手机浏览器和常见 iOS/Android 浏览器。
## 技术栈规划(不一定全用到) ## 当前技术栈
```text ```text
Vue 3 Vue 3
TypeScript TypeScript
Vite Vite
Vue Router Vue Router
Vant Axios
Zod
pdfjs-dist
signature_pad
Vitest
Playwright
``` ```
Vant、Zod、PDF 预览、第三方签名组件和自动化测试暂不接入;当前签名区域使用原生 Canvas先验证业务流程和交互。
患者端应采用移动优先设计,按钮、文字和签名区域需要适合老年患者使用。 患者端应采用移动优先设计,按钮、文字和签名区域需要适合老年患者使用。
## 与医护端的关系 ## 与医护端的关系
@@ -70,4 +67,4 @@ patient-h5 不直接访问医院完整电子病历。
## 当前状态 ## 当前状态
当前仅完成目录和说明文档,尚未初始化 Vite 已完成 Vite 基础初始化、路由、签署流程状态管理和第一版移动端页面骨架。当前流程使用演示数据,尚未接入真实 Token 校验、文书接口和签署提交接口

View File

@@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import HelloWorld from './components/HelloWorld.vue' import { RouterView } from 'vue-router'
</script> </script>
<template> <template>
<HelloWorld /> <RouterView />
</template> </template>

View File

@@ -0,0 +1,6 @@
import axios from 'axios'
export const apiClient = axios.create({
baseURL: import.meta.env.VITE_API_BASE_URL || '/api',
timeout: 10_000,
})

View File

@@ -0,0 +1,130 @@
<script setup lang="ts">
import { onBeforeUnmount, onMounted, ref } from 'vue'
const canvasRef = ref<HTMLCanvasElement | null>(null)
const hasSignature = ref(false)
let drawingContext: CanvasRenderingContext2D | null = null
let drawing = false
function resizeCanvas() {
const canvas = canvasRef.value
if (!canvas) {
return
}
const rect = canvas.getBoundingClientRect()
const ratio = Math.max(window.devicePixelRatio || 1, 1)
canvas.width = Math.floor(rect.width * ratio)
canvas.height = Math.floor(rect.height * ratio)
const context = canvas.getContext('2d')
if (!context) {
return
}
context.setTransform(ratio, 0, 0, ratio, 0, 0)
context.lineCap = 'round'
context.lineJoin = 'round'
context.lineWidth = 2.4
context.strokeStyle = '#173b56'
drawingContext = context
hasSignature.value = false
}
function getPoint(event: PointerEvent) {
const canvas = canvasRef.value
if (!canvas) {
return null
}
const rect = canvas.getBoundingClientRect()
return {
x: event.clientX - rect.left,
y: event.clientY - rect.top,
}
}
function startDrawing(event: PointerEvent) {
const point = getPoint(event)
if (!drawingContext || !point) {
return
}
const canvas = canvasRef.value
canvas?.setPointerCapture(event.pointerId)
drawing = true
drawingContext.beginPath()
drawingContext.moveTo(point.x, point.y)
event.preventDefault()
}
function draw(event: PointerEvent) {
if (!drawing || !drawingContext) {
return
}
const point = getPoint(event)
if (!point) {
return
}
drawingContext.lineTo(point.x, point.y)
drawingContext.stroke()
hasSignature.value = true
event.preventDefault()
}
function stopDrawing(event: PointerEvent) {
const canvas = canvasRef.value
if (drawing && canvas?.hasPointerCapture(event.pointerId)) {
canvas.releasePointerCapture(event.pointerId)
}
drawing = false
}
function clearSignature() {
const canvas = canvasRef.value
if (!canvas || !drawingContext) {
return
}
drawingContext.clearRect(0, 0, canvas.clientWidth, canvas.clientHeight)
hasSignature.value = false
}
function isEmpty() {
return !hasSignature.value
}
onMounted(() => {
resizeCanvas()
window.addEventListener('resize', resizeCanvas)
})
onBeforeUnmount(() => {
window.removeEventListener('resize', resizeCanvas)
})
defineExpose({ clearSignature, isEmpty })
</script>
<template>
<div class="signature-pad">
<div class="signature-pad-heading">
<span>请在框内手写签名</span>
<span class="signature-hint">签名需清晰完整</span>
</div>
<canvas
ref="canvasRef"
class="signature-canvas"
aria-label="手写签名区域"
@pointerdown="startDrawing"
@pointermove="draw"
@pointerup="stopDrawing"
@pointercancel="stopDrawing"
@pointerleave="stopDrawing"
/>
<button class="clear-button" type="button" @click="clearSignature">清除重签</button>
</div>
</template>

View File

@@ -0,0 +1,21 @@
import { reactive } from 'vue'
import type { SignFlowState } from '@/types/signing'
const initialState: SignFlowState = {
patientName: '张*',
visitNo: 'MZ20260827018',
documentTitle: '儿科急诊特殊检查知情同意书',
taskNo: 'CT-20260827-001',
consentAccepted: false,
signerName: '',
relation: '',
signatureCaptured: false,
submittedAt: '',
}
export const signingState = reactive<SignFlowState>({ ...initialState })
export function resetSignFlow() {
Object.assign(signingState, initialState)
}

View File

@@ -1,5 +1,7 @@
import { createApp } from 'vue' import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
createApp(App).mount('#app') import App from './App.vue'
import router from './router'
import './styles/index.css'
createApp(App).use(router).mount('#app')

View File

@@ -0,0 +1,20 @@
import { createRouter, createWebHistory } from 'vue-router'
import ConsentView from '@/views/consent/ConsentView.vue'
import EntryView from '@/views/entry/EntryView.vue'
import ResultView from '@/views/result/ResultView.vue'
import SignerView from '@/views/signer/SignerView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{ path: '/', redirect: '/entry' },
{ path: '/entry', component: EntryView, meta: { title: '签署入口' } },
{ path: '/consent', component: ConsentView, meta: { title: '阅读文书' } },
{ path: '/signer', component: SignerView, meta: { title: '确认并签署' } },
{ path: '/result', component: ResultView, meta: { title: '签署结果' } },
{ path: '/:pathMatch(.*)*', redirect: '/entry' },
],
})
export default router

View File

@@ -0,0 +1,481 @@
:root {
font-family:
Inter,
ui-sans-serif,
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
sans-serif;
color: #173b56;
background: #f3f8f8;
font-synthesis: none;
text-rendering: optimizeLegibility;
}
* {
box-sizing: border-box;
}
body {
min-width: 320px;
min-height: 100vh;
margin: 0;
background: radial-gradient(circle at 10% 0%, rgb(170 226 215 / 28%), transparent 30%), #f3f8f8;
}
button,
input,
select {
font: inherit;
}
button {
cursor: pointer;
}
.mobile-shell {
width: min(100%, 560px);
min-height: 100vh;
margin: 0 auto;
padding: 30px 20px 42px;
}
.mobile-brand {
display: flex;
gap: 10px;
align-items: center;
margin-bottom: 44px;
}
.mobile-brand-mark,
.result-icon {
display: grid;
place-items: center;
color: #17425b;
font-weight: 800;
border-radius: 14px;
background: #9dded1;
}
.mobile-brand-mark {
width: 38px;
height: 38px;
font-size: 20px;
}
.mobile-brand strong,
.mobile-brand span {
display: block;
}
.mobile-brand strong {
color: #173b56;
font-size: 17px;
letter-spacing: 1px;
}
.mobile-brand span {
margin-top: 2px;
color: #8497a5;
font-size: 10px;
}
.eyebrow {
margin: 0 0 8px;
color: #4d988d;
font-size: 11px;
font-weight: 800;
letter-spacing: 1.4px;
text-transform: uppercase;
}
.mobile-hero,
.mobile-heading {
margin-bottom: 24px;
}
.mobile-hero h1,
.mobile-heading h1,
.result-shell h1 {
margin: 0;
color: #173b56;
font-size: 28px;
line-height: 1.25;
}
.mobile-hero p:not(.eyebrow),
.mobile-heading p:not(.eyebrow),
.result-copy {
margin: 12px 0 0;
color: #788f9d;
font-size: 14px;
line-height: 1.7;
}
.mobile-card,
.document-card,
.signature-pad {
border: 1px solid #e0eceb;
border-radius: 18px;
background: rgb(255 255 255 / 86%);
box-shadow: 0 12px 30px rgb(33 79 92 / 5%);
}
.patient-card {
padding: 20px;
}
.card-label {
margin-bottom: 16px;
color: #8196a3;
font-size: 11px;
font-weight: 700;
letter-spacing: 1px;
}
.patient-row {
display: flex;
gap: 12px;
align-items: center;
}
.patient-avatar {
display: grid;
width: 46px;
height: 46px;
color: #1c736b;
font-size: 18px;
font-weight: 700;
place-items: center;
border-radius: 14px;
background: #dff3ee;
}
.patient-row strong,
.patient-row span {
display: block;
}
.patient-row strong {
color: #294d64;
font-size: 16px;
}
.patient-row span {
margin-top: 5px;
color: #8aa0aa;
font-size: 12px;
}
.task-number {
margin-top: 18px;
padding-top: 14px;
color: #8aa0aa;
font-size: 11px;
border-top: 1px solid #edf3f2;
}
.notice-card {
display: flex;
gap: 12px;
align-items: flex-start;
margin-top: 14px;
padding: 16px;
}
.notice-icon {
display: grid;
flex: 0 0 auto;
width: 24px;
height: 24px;
color: #2a8176;
font-size: 13px;
font-weight: 800;
place-items: center;
border-radius: 50%;
background: #dff3ee;
}
.notice-card strong,
.notice-card p {
display: block;
}
.notice-card strong {
color: #31576c;
font-size: 13px;
}
.notice-card p {
margin: 6px 0 0;
color: #8298a3;
font-size: 12px;
line-height: 1.6;
}
.mobile-primary-button {
width: 100%;
min-height: 50px;
margin-top: 24px;
padding: 0 20px;
color: #fff;
font-size: 15px;
font-weight: 700;
border: 0;
border-radius: 13px;
background: #277d78;
box-shadow: 0 10px 20px rgb(39 125 120 / 18%);
}
.mobile-primary-button:hover {
background: #216c68;
}
.mobile-text-button {
display: block;
margin: 14px auto 0;
padding: 6px 12px;
color: #4d988d;
font-size: 13px;
border: 0;
background: transparent;
}
.secure-note {
margin: 18px 0 0;
color: #9aabb3;
font-size: 11px;
line-height: 1.6;
text-align: center;
}
.mobile-stepper {
display: flex;
gap: 9px;
align-items: center;
margin-bottom: 30px;
color: #a4b4bb;
font-size: 11px;
}
.mobile-stepper span.is-active {
color: #267d77;
font-weight: 700;
}
.mobile-stepper i {
width: 18px;
height: 1px;
background: #d3e3e1;
}
.document-card {
max-height: 48vh;
margin-bottom: 18px;
padding: 20px;
overflow: auto;
}
.document-meta {
display: flex;
justify-content: space-between;
margin-bottom: 22px;
color: #90a4ad;
font-size: 11px;
}
.document-card h2 {
margin: 20px 0 8px;
color: #31566c;
font-size: 15px;
}
.document-card h2:first-of-type {
margin-top: 0;
}
.document-card p {
margin: 0;
color: #718995;
font-size: 13px;
line-height: 1.8;
}
.document-placeholder {
margin-top: 20px;
padding: 13px;
color: #7c9997;
font-size: 11px;
text-align: center;
border: 1px dashed #b8d8d1;
border-radius: 10px;
background: #f3fbf9;
}
.check-row {
display: flex;
gap: 9px;
align-items: flex-start;
color: #5d7885;
font-size: 13px;
line-height: 1.6;
}
.check-row input {
flex: 0 0 auto;
width: 18px;
height: 18px;
margin: 2px 0 0;
accent-color: #277d78;
}
.form-error {
margin: 10px 0 0;
color: #c65d5d;
font-size: 12px;
}
.signer-form {
margin-bottom: 18px;
padding: 20px;
}
.field-label {
display: block;
margin-bottom: 8px;
color: #567281;
font-size: 12px;
font-weight: 700;
}
.field-label + .field-label {
margin-top: 18px;
}
.mobile-input {
width: 100%;
min-height: 46px;
padding: 0 13px;
color: #31566c;
font-size: 14px;
border: 1px solid #d8e8e6;
border-radius: 10px;
outline: 0;
background: #fbfefd;
}
.mobile-input:focus {
border-color: #69b5aa;
box-shadow: 0 0 0 3px rgb(105 181 170 / 14%);
}
.signature-pad {
padding: 16px;
}
.signature-pad-heading {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
color: #567281;
font-size: 12px;
font-weight: 700;
}
.signature-hint {
color: #9aabb3;
font-size: 10px;
font-weight: 400;
}
.signature-canvas {
display: block;
width: 100%;
height: 180px;
touch-action: none;
border: 1px dashed #b9d8d2;
border-radius: 10px;
background:
linear-gradient(#fff, #fff),
repeating-linear-gradient(
to bottom,
transparent 0,
transparent 43px,
rgb(185 216 210 / 28%) 44px,
transparent 45px
);
background-blend-mode: multiply;
}
.clear-button {
margin-top: 9px;
padding: 5px 0;
color: #4d988d;
font-size: 11px;
border: 0;
background: transparent;
}
.result-shell {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 100px;
text-align: center;
}
.result-icon {
width: 68px;
height: 68px;
margin-bottom: 22px;
color: #1f776f;
font-size: 32px;
border-radius: 22px;
}
.result-copy {
max-width: 370px;
}
.result-card {
width: 100%;
margin-top: 28px;
padding: 6px 20px;
text-align: left;
}
.result-card > div {
display: flex;
justify-content: space-between;
gap: 20px;
padding: 15px 0;
border-bottom: 1px solid #edf3f2;
}
.result-card > div:last-child {
border-bottom: 0;
}
.result-card span {
color: #91a4ad;
font-size: 12px;
}
.result-card strong {
color: #31566c;
font-size: 12px;
}
@media (max-width: 380px) {
.mobile-shell {
padding-right: 16px;
padding-left: 16px;
}
.mobile-hero h1,
.mobile-heading h1,
.result-shell h1 {
font-size: 25px;
}
}

View File

@@ -0,0 +1,21 @@
export type SignerRelation = '本人' | '父亲' | '母亲' | '其他监护人' | '其他'
export interface SignFlowState {
patientName: string
visitNo: string
documentTitle: string
taskNo: string
consentAccepted: boolean
signerName: string
relation: SignerRelation | ''
signatureCaptured: boolean
submittedAt: string
}
export const relationOptions: Array<{ value: SignerRelation; label: string }> = [
{ value: '本人', label: '本人' },
{ value: '父亲', label: '父亲' },
{ value: '母亲', label: '母亲' },
{ value: '其他监护人', label: '其他监护人' },
{ value: '其他', label: '其他' },
]

View File

@@ -0,0 +1,67 @@
<script setup lang="ts">
import { ref } from 'vue'
import { useRouter } from 'vue-router'
import { signingState } from '@/composables/useSignFlow'
const router = useRouter()
const hasRead = ref(false)
const errorMessage = ref('')
function continueToSigner() {
if (!hasRead.value) {
errorMessage.value = '请先确认已阅读文书内容。'
return
}
signingState.consentAccepted = true
void router.push('/signer')
}
</script>
<template>
<main class="mobile-shell">
<div class="mobile-stepper">
<span class="is-active">1 阅读</span>
<i />
<span>2 确认</span>
<i />
<span>3 完成</span>
</div>
<section class="mobile-heading">
<p class="eyebrow">知情同意书</p>
<h1>{{ signingState.documentTitle }}</h1>
<p>请完整阅读以下内容如有疑问请联系为您说明情况的医生</p>
</section>
<article class="document-card">
<div class="document-meta">
<span>患者{{ signingState.patientName }}</span>
<span>版本V1.0</span>
</div>
<h2>检查/治疗说明</h2>
<p>
医生已向患者或监护人说明拟实施的检查治疗目的操作过程可能风险及替代方案患者或监护人可以就相关内容向医务人员提出问题
</p>
<h2>可能风险</h2>
<p>
具体风险因患者病情检查方式和治疗方案而异请在充分了解相关情况后结合医生建议决定是否同意
</p>
<h2>患者权利</h2>
<p>
患者或监护人有权选择同意或拒绝本次检查/治疗拒绝可能影响后续诊疗安排相关情况将按医院流程记录
</p>
<div class="document-placeholder">正式文书 PDF 将在接入后端后展示</div>
</article>
<label class="check-row">
<input v-model="hasRead" type="checkbox" />
<span>我已阅读并理解上述内容愿意继续确认签署人信息</span>
</label>
<p v-if="errorMessage" class="form-error">{{ errorMessage }}</p>
<button class="mobile-primary-button" type="button" @click="continueToSigner">下一步</button>
<button class="mobile-text-button" type="button" @click="router.back()">返回</button>
</main>
</template>

View File

@@ -0,0 +1,56 @@
<script setup lang="ts">
import { useRouter } from 'vue-router'
import { resetSignFlow, signingState } from '@/composables/useSignFlow'
const router = useRouter()
function startSigning() {
resetSignFlow()
void router.push('/consent')
}
</script>
<template>
<main class="mobile-shell">
<header class="mobile-brand">
<div class="mobile-brand-mark"></div>
<div>
<strong>医签通</strong>
<span>医疗知情同意签署</span>
</div>
</header>
<section class="mobile-hero">
<p class="eyebrow">待签署文书</p>
<h1>{{ signingState.documentTitle }}</h1>
<p>请确认以下任务信息并在阅读文书后完成签署</p>
</section>
<section class="mobile-card patient-card">
<div class="card-label">患者信息</div>
<div class="patient-row">
<div class="patient-avatar">{{ signingState.patientName.slice(0, 1) }}</div>
<div>
<strong>{{ signingState.patientName }}</strong>
<span>{{ signingState.visitNo }}</span>
</div>
</div>
<div class="task-number">任务编号{{ signingState.taskNo }}</div>
</section>
<section class="mobile-card notice-card">
<div class="notice-icon">i</div>
<div>
<strong>请使用实际签署人的信息</strong>
<p>如果由家属或监护人代签请在下一步选择与患者的关系</p>
</div>
</section>
<button class="mobile-primary-button" type="button" @click="startSigning">
开始阅读并签署
</button>
<p class="secure-note">本页面仅用于本次知情同意签署请勿转发签署链接</p>
</main>
</template>

View File

@@ -0,0 +1,39 @@
<script setup lang="ts">
import { useRouter } from 'vue-router'
import { resetSignFlow, signingState } from '@/composables/useSignFlow'
const router = useRouter()
function returnToEntry() {
resetSignFlow()
void router.replace('/entry')
}
</script>
<template>
<main class="mobile-shell result-shell">
<div class="result-icon"></div>
<p class="eyebrow">签署完成</p>
<h1>知情同意书已提交</h1>
<p class="result-copy">本次签署结果已提交至医签通请按照医务人员指引完成后续诊疗安排</p>
<section class="mobile-card result-card">
<div>
<span>患者</span>
<strong>{{ signingState.patientName }}</strong>
</div>
<div>
<span>签署人</span>
<strong>{{ signingState.signerName }}{{ signingState.relation }}</strong>
</div>
<div>
<span>提交时间</span>
<strong>{{ signingState.submittedAt }}</strong>
</div>
</section>
<p class="secure-note">请不要重复提交如需修改请联系现场医务人员</p>
<button class="mobile-text-button" type="button" @click="returnToEntry">返回首页</button>
</main>
</template>

View File

@@ -0,0 +1,78 @@
<script setup lang="ts">
import { ref } from 'vue'
import { useRouter } from 'vue-router'
import SignatureCanvas from '@/components/SignatureCanvas.vue'
import { signingState } from '@/composables/useSignFlow'
import { relationOptions, type SignerRelation } from '@/types/signing'
interface SignatureCanvasExpose {
clearSignature: () => void
isEmpty: () => boolean
}
const router = useRouter()
const signerName = ref('')
const relation = ref<SignerRelation | ''>('')
const errorMessage = ref('')
const signatureCanvas = ref<SignatureCanvasExpose | null>(null)
function submitSigning() {
const trimmedName = signerName.value.trim()
if (!trimmedName) {
errorMessage.value = '请输入实际签署人姓名。'
return
}
if (!relation.value) {
errorMessage.value = '请选择签署人与患者的关系。'
return
}
if (signatureCanvas.value?.isEmpty()) {
errorMessage.value = '请完成手写签名。'
return
}
signingState.signerName = trimmedName
signingState.relation = relation.value
signingState.signatureCaptured = true
signingState.submittedAt = new Date().toLocaleString('zh-CN')
void router.push('/result')
}
</script>
<template>
<main class="mobile-shell">
<div class="mobile-stepper">
<span>1 阅读</span>
<i />
<span class="is-active">2 确认</span>
<i />
<span>3 完成</span>
</div>
<section class="mobile-heading">
<p class="eyebrow">签署人确认</p>
<h1>请确认实际签署人</h1>
<p>签署人信息将与本次知情同意记录一并保存</p>
</section>
<section class="mobile-card signer-form">
<label class="field-label" for="signer-name">签署人姓名</label>
<input id="signer-name" v-model="signerName" class="mobile-input" placeholder="请输入姓名" />
<label class="field-label" for="signer-relation">与患者关系</label>
<select id="signer-relation" v-model="relation" class="mobile-input">
<option value="" disabled>请选择关系</option>
<option v-for="option in relationOptions" :key="option.value" :value="option.value">
{{ option.label }}
</option>
</select>
</section>
<SignatureCanvas ref="signatureCanvas" />
<p v-if="errorMessage" class="form-error">{{ errorMessage }}</p>
<button class="mobile-primary-button" type="button" @click="submitSigning">确认提交签署</button>
<button class="mobile-text-button" type="button" @click="router.back()">返回修改</button>
</main>
</template>