From 7bcdaba7faad85bf16bf0f2a1dbd3e390bdb15dd Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 05 Nov 2024 21:15:40 +0800
Subject: [PATCH] 救援队伍统计、应急空间统计、风险源统计图表样式初步调整,园区概况布局调整 倾斜模型加载配置微调后续看加载效果 企业名录样式调整
---
src/api/indParkInfo.js | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/src/api/indParkInfo.js b/src/api/indParkInfo.js
index 0e3375e..38a5bc8 100644
--- a/src/api/indParkInfo.js
+++ b/src/api/indParkInfo.js
@@ -19,4 +19,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