From b2d04038df93bed77a49e3ad29004d9fc7eca888 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期五, 27 九月 2024 14:40:23 +0800
Subject: [PATCH] 更新

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

diff --git a/src/types/pinia.d.ts b/src/types/pinia.d.ts
index f7c32ad..5a056bc 100644
--- a/src/types/pinia.d.ts
+++ b/src/types/pinia.d.ts
@@ -9,12 +9,29 @@
 	roles: string[];
 	time: number;
 	userName: string;
+	clientCode:string,
+	clientName:string
 	[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