From 8d14fec97344df49d58db115852c03b466482bc6 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期三, 12 四月 2023 14:47:21 +0800
Subject: [PATCH] 设备、场所、部门接口

---
 src/api/analyse/plan/index.ts |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/src/api/analyse/plan/index.ts b/src/api/analyse/plan/index.ts
index 8c1ef58..2e01c70 100644
--- a/src/api/analyse/plan/index.ts
+++ b/src/api/analyse/plan/index.ts
@@ -49,5 +49,29 @@
 				method: 'get',
 			});
 		},
+
+		refuseIdentify: (params: object)=>{
+			return request({
+				url: import.meta.env.VITE_API_URL + '/risk/update/identificationRefuse',
+				method: 'post',
+				data: params
+			});
+		},
+
+		refuseEvaluate: (params: object)=>{
+			return request({
+				url: import.meta.env.VITE_API_URL + '/risk/update/evaluateRefuse',
+				method: 'post',
+				data: params
+			});
+		},
+
+		refuseScene: (params: object)=>{
+			return request({
+				url: import.meta.env.VITE_API_URL + '/risk/update/sceneRefuse',
+				method: 'post',
+				data: params
+			});
+		}
 	};
 }

--
Gitblit v1.9.2