From 8e72ebbb44dba3ec5cf6dd3cd2613e6e9aed31ef Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 22 Nov 2024 15:37:33 +0800
Subject: [PATCH] Merge branch 'main' of http://139.196.74.78:10010/r/zhyq/bigScreen
---
src/api/indParkInfo.js | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/src/api/indParkInfo.js b/src/api/indParkInfo.js
index 0e3375e..7360792 100644
--- a/src/api/indParkInfo.js
+++ b/src/api/indParkInfo.js
@@ -12,6 +12,16 @@
+export const getfirmInfoDetail = (params) => {
+ const url = `/yw/firmInfo/getDetail`;
+ return request({
+ url,
+ method: 'get',
+ params,
+ });
+};
+
+
export const getPage = (params) => {
const url = `/yw/firmInfo/page`;
return request({
@@ -19,4 +29,35 @@
method: 'get',
params,
});
+};
+
+
+
+export const getRescueTeamStatistic = (params) => {
+ const url = `/yw/rescueTeam/getStatisticData`;
+ return request({
+ url,
+ method: 'get',
+ params,
+ });
+};
+
+
+
+export const getRiskSourceStatistic = (params) => {
+ const url = `/yw/riskSource/getStatisticData`;
+ return request({
+ url,
+ method: 'get',
+ params,
+ });
+};
+
+export const getEmergencySpaceStatistic = (params) => {
+ const url = `/yw/emergencySpace/getStatisticData`;
+ return request({
+ url,
+ method: 'get',
+ params,
+ });
};
\ No newline at end of file
--
Gitblit v1.9.3