From 52c88b72d655c40f5c883e496c777906211caa2f Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期五, 13 六月 2025 12:10:23 +0800
Subject: [PATCH] 1757 患者档案新增查看内容

---
 src/types/pinia.d.ts |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/src/types/pinia.d.ts b/src/types/pinia.d.ts
index 806a210..6f2155a 100644
--- a/src/types/pinia.d.ts
+++ b/src/types/pinia.d.ts
@@ -1,6 +1,10 @@
 /**
  * pinia 类型定义
  */
+declare interface clientInfo {
+	code:string,
+	clientName:string,
+}
 
 // 用户信息
 declare interface UserInfos<T = any> {
@@ -10,13 +14,29 @@
 	time: number;
 	userName: string;
 	clientCode:string,
-	clientName:string
+	clientName:string,
+	clientInfos:[]
 	[key: string]: T;
 }
 declare interface UserInfosState {
 	userInfos: UserInfos;
 }
 
+// 患者信息 
+declare interface patientsInfo<T=any>{
+	id:string,
+	code:string,
+	age:number,
+	patientName:string,
+	patientGenderText:string,
+	//头像
+	patientAvatarIcon:string,
+	[key: string]: T;
+}
+declare interface patientsInfoState {
+	patientsInfo: patientsInfo;
+}
+
 // 路由缓存列表
 declare interface KeepAliveNamesState {
 	keepAliveNames: string[];

--
Gitblit v1.8.0