保安服务企业管理项目备份
zhongrj
2024-05-24 f2a74b0b28b74dc29be85ec8e6328bdd262f84b9
src/api/securityAnalysis/securityAnalysis.js
@@ -1,4 +1,4 @@
import request from '@/router/axios';
import request from '@/router/axios'
export const getinformationselectExtype = (deptid, jurisdiction) => { //保安员审查情况统计  只需要公司的deptid
    return request({
@@ -49,7 +49,6 @@
export const getinformationselectSoil = (deptid, jurisdiction) => { //社保缴纳情况统计  只需要公司的deptid
    return request({
        url: '/api/information/selectSoil',
        // url: 'http://192.168.0.109:81/information/selectExtype',
        method: 'post',
        params: {
            deptid: deptid,
@@ -70,10 +69,42 @@
    })
}
export const getExamStatisInfo = (deptid, jurisdiction) => { //保安员考试情况统计  只需要公司的deptid
    return request({
        url: '/api/examScore/getExamStatisInfo',
        method: 'get',
        params: {
            deptid: deptid,
            jurisdiction: jurisdiction,
        }
    })
}
export const getEducationStatistics = (deptid, jurisdiction) => {
    return request({
        url: '/api/information/getEducationStatistics',
        method: 'post',
        params: {
            deptid: deptid,
            jurisdiction: jurisdiction,
        }
    })
}
export const getAgeStatistics = (deptid, jurisdiction) => {
    return request({
        url: '/api/blade-user/getAgeStatistics',
        method: 'post',
        params: {
            deptId: deptid,
            jurisdiction: jurisdiction,
        }
    })
}
export const getinformationstatisticsXX = (current, size, params) => { //保安员考试情况统计 详细信息  只需要公司的deptid
    return request({
        url: '/api/examScore/score-page',
        // url: 'http://192.168.0.109:81/information/selectExtype',
        method: 'get',
        params: {
            ...params,
@@ -81,4 +112,25 @@
            size,
        }
    })
}
export const getLoginDataStatistics = (jurisdiction) => {
    return request({
        url: '/api/loginRecord/getLoginDataStatistics',
        method: 'get',
        params: {
            jurisdiction: jurisdiction,
        }
    })
}
export const getPQStatistics = (params) => {
    return request({
        url: '/api/dispatcher/getStatistics',
        method: 'get',
        params: {
            ...params
        }
    })
}