feat(health+miniprogram): 预约/报告/随访/资讯/家庭管理 — Chunk 4-6
后端: - 添加 articles 表迁移 + Entity + Service + Handler - 健康数据趋势 API (get_mini_trend) 注册路由 - article CRUD (list/get) + DTO 前端 (11个新页面 + 5个服务): - 预约挂号: 列表/创建向导/详情页 - 报告管理: 列表/详情页 - 随访管理: 任务列表/记录详情页 - 资讯文章: 文章详情页 - 个人中心: 就诊人管理/新增/我的报告/我的随访/用药提醒/设置 - 更新 app.config.ts 注册全部路由 - 更新 profile/article 页面为真实功能
This commit is contained in:
30
apps/miniprogram/src/services/patient.ts
Normal file
30
apps/miniprogram/src/services/patient.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { api } from './request';
|
||||
|
||||
export interface Patient {
|
||||
id: string;
|
||||
name: string;
|
||||
gender?: string;
|
||||
birthday?: string;
|
||||
phone?: string;
|
||||
id_number?: string;
|
||||
relation?: string;
|
||||
version: number;
|
||||
}
|
||||
|
||||
export async function listPatients() {
|
||||
return api.get<{ data: Patient[]; total: number }>('/health/patients?page=1&page_size=100');
|
||||
}
|
||||
|
||||
export async function createPatient(data: {
|
||||
name: string;
|
||||
gender?: string;
|
||||
birthday?: string;
|
||||
phone?: string;
|
||||
id_number?: string;
|
||||
}) {
|
||||
return api.post<Patient>('/health/patients', data);
|
||||
}
|
||||
|
||||
export async function updatePatient(id: string, data: any, version: number) {
|
||||
return api.put<Patient>(`/health/patients/${id}`, { ...data, version });
|
||||
}
|
||||
Reference in New Issue
Block a user