保安监管系统-验收版本
zhengpz
2021-12-07 dbb160f7ce6c334ee561e551930ec72b5f5db899
src/api/securityUnitOperation/securityUnitOperation.js
@@ -82,4 +82,55 @@
        method: "post",
        params: params
    });
};
// 公司服务对象小于2家的预警信息
export const getSecurityUnitServerLessPage = (params) => {
    return request({
        url: "/api/information/getSecurityUnitServerLessPage",
        method: "get",
        params: params
    });
};
// 派遣率小于50%的公司预警信息
export const getSecurityUnitDispatcherLessPage = (params) => {
    return request({
        url: "/api/information/getSecurityUnitDispatcherLessPage",
        method: "get",
        params: params
    });
};
// 持证率小于50%的公司预警信息
export const getSecurityUnitHoldLessPage = (params) => {
    return request({
        url: "/api/information/getSecurityUnitHoldLessPage",
        method: "get",
        params: params
    });
};
// 经济-社保缴纳率小于90%
export const getSecurityUnitSoilLessPage = (params) => {
    return request({
        url: "/api/information/getSecurityUnitSoilLessPage?proportion=90",
        method: "get",
        params: params
    });
};
// 经济-保险缴纳小于90%的公司预警信息
export const getSecurityUnitInsuranceLessPage = (params) => {
    return request({
        url: "/api/information/getSecurityUnitInsuranceLessPage?proportion=90",
        method: "get",
        params: params
    });
};
// 经济-服务合同小于2份的公司预警信息
export const getSecurityUnitServerLessPage1 = (params) => {
    return request({
        url: "/api/information/getSecurityUnitServerLessPage",
        method: "get",
        params: params
    });
};