From 0bfdaad01fdcdeef567b59a49f7715a7ac7f0d51 Mon Sep 17 00:00:00 2001
From: zhengpz <1838927346@qq.com>
Date: Fri, 17 Sep 2021 00:57:21 +0800
Subject: [PATCH] 对接口
---
src/api/index/index.js | 68 ++++++++++++++++++++++++++++++++++
1 files changed, 68 insertions(+), 0 deletions(-)
diff --git a/src/api/index/index.js b/src/api/index/index.js
index e8b9c13..162ebb1 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -150,3 +150,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
+ });
+};
\ No newline at end of file
--
Gitblit v1.9.3