import request from '@/router/axios'; export const getinformationselectExtype = (deptid, jurisdiction) => { //保安员审查情况统计 只需要公司的deptid return request({ url: '/api/information/selectExtype', // url: 'http://192.168.0.109:81/information/selectExtype', method: 'post', params: { deptid: deptid, jurisdiction: jurisdiction, } }) } export const getinformationselectHold = (deptid, jurisdiction) => { //保安员持证 只需要公司的deptid return request({ url: '/api/information/selectHold', // url: 'http://192.168.0.109:81/information/selectExtype', method: 'post', params: { deptid: deptid, jurisdiction: jurisdiction, } }) } export const getinformationselectDis = (deptid, jurisdiction) => { //派遣服务单位 只需要公司的deptid return request({ url: '/api/information/queryYearKh', // url: 'http://192.168.0.109:81/information/selectExtype', method: 'post', params: { deptid: deptid, jurisdiction: jurisdiction, } }) } export const getinformationselectDisp = (deptid, jurisdiction) => { //保安派遣数量 只需要公司的deptid return request({ url: '/api/information/selectDisp', // url: 'http://192.168.0.109:81/information/selectExtype', method: 'post', params: { deptid: deptid, jurisdiction: jurisdiction, } }) } export const getinformationselectSoil = (deptid, jurisdiction) => { //社保缴纳情况统计 只需要公司的deptid return request({ url: '/api/information/selectSoil', method: 'post', params: { deptid: deptid, jurisdiction: jurisdiction, } }) } export const getinformationstatistics = (deptid, jurisdiction) => { //保安员考试情况统计 只需要公司的deptid return request({ url: '/api/examScore/score-statistics', // url: 'http://192.168.0.109:81/information/selectExtype', method: 'get', params: { deptid: deptid, jurisdiction: jurisdiction, } }) } 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', method: 'get', params: { ...params, current, size, } }) } export const getLoginDataStatistics = (jurisdiction) => { return request({ url: '/api/loginRecord/getLoginDataStatistics', method: 'get', params: { jurisdiction: jurisdiction, } }) }