| | |
| | | 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 |
| | | }); |
| | | }; |