From d2611ee5cb26997b5902b0be82c10c3d1fe4a86c Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Wed, 22 Sep 2021 10:38:06 +0800
Subject: [PATCH] Merge branch 'master' of http://s16s652780.51mypc.cn:49896/r/zhba_regulatory_ys

---
 src/api/index/index.js |   78 ++++++++++++++++++++++++++++++++++++++-
 1 files changed, 76 insertions(+), 2 deletions(-)

diff --git a/src/api/index/index.js b/src/api/index/index.js
index e8b9c13..ac53e9d 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -47,10 +47,16 @@
     params: params
   });
 };
+// export const selectFj = () => {
+//   return request({
+//     url: "/api/information/selectFj",
+//     method: "post"
+//   });
+// };
 export const selectFj = () => {
   return request({
-    url: "/api/information/selectFj",
-    method: "post"
+    url: "/api/information/selectSubstationWarnInfo",
+    method: "get"
   });
 };
 export const selectBx = params => {
@@ -150,3 +156,71 @@
     method: "get"
   });
 };
+
+// 地图-保安公司列表接口
+export const getSecurityUnitPositionInfo = () => {
+  return request({
+    url: "/api/information/getSecurityUnitPositionInfo",
+    method: "get"
+  });
+};
+
+// 业务对象统计---保安公司模块表格接口
+export const getSecurityUnitInfoPage = params => {
+  return request({
+    url: "/api/information/getSecurityUnitInfoPage",
+    method: "get",
+    params: params
+  });
+};
+
+// 业务对象统计---保安员持证模块表格接口
+export const getSecurityUnitHoldInfoPage = params => {
+  return request({
+    url: "/api/information/getSecurityUnitHoldInfoPage",
+    method: "get",
+    params: params
+  });
+};
+
+// 考试通过率低于50%的保安公司表格接口
+export const getSecurityUnitExamLessPage = params => {
+  return request({
+    url: "/api/information/getSecurityUnitExamLessPage?proportion=50",
+    method: "get",
+    params: params
+  });
+};
+
+// 持证率低于50%的保安公司表格接口
+export const getSecurityUnitHoldLessPage = params => {
+  return request({
+    url: "/api/information/getSecurityUnitHoldLessPage?proportion=50",
+    method: "get",
+    params: params
+  });
+};
+// 社保缴纳率低于50%的保安公司表格接口
+export const getSecurityUnitSoilLessPage = params => {
+  return request({
+    url: "/api/information/getSecurityUnitSoilLessPage?proportion=50",
+    method: "get",
+    params: params
+  });
+};
+// 派遣率低于50%的保安公司表格接口
+export const getSecurityUnitDispatcherLessPage = params => {
+  return request({
+    url: "/api/information/getSecurityUnitDispatcherLessPage?proportion=50",
+    method: "get",
+    params: params
+  });
+};
+// 业务对象统计---预警信息模块表格接口
+export const getSubstationWarnInfoPage = params => {
+  return request({
+    url: "/api/information/getSubstationWarnInfoPage",
+    method: "get",
+    params: params
+  });
+};

--
Gitblit v1.9.3