From bfb8feb317f69b849994106025d9ef62eb34bd59 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期四, 07 十一月 2024 08:43:16 +0800
Subject: [PATCH] 新增暂存功能

---
 src/views/experiment/project/index.ts |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/views/experiment/project/index.ts b/src/views/experiment/project/index.ts
index ea7412d..12a630a 100644
--- a/src/views/experiment/project/index.ts
+++ b/src/views/experiment/project/index.ts
@@ -29,6 +29,10 @@
 	id: number,
 	name: string,
 }
+declare interface eType {
+	typeId: number,
+	typeName: string,
+}
 
 declare interface ProjectDialogType {
 	title: string,
@@ -37,7 +41,8 @@
 	projectForm: {
 		id: null | number,
 		experimentName: string,
-		experimentType: null | number,
+		experimentType: null | number | any,
+		typeList: Array<eType>,
 		liabilityUserId: null | number,
 		safeLiabilityUser: string
 		liabilityUserPhone: string,
@@ -75,6 +80,7 @@
 	allPersonList: Array<AllPersonListType>
 	systemPersonList: Array<AllPersonListType>
 	allRoomList: Array<RoomType>
+	experimentTypeList: eType []
 }
 
 declare interface SelectDangerType {

--
Gitblit v1.9.2