import {request} from "@/utils/request"; /** * 查询指定时间段系统使用情况 * @param params 查询参数 */ export function getSystemApplyCount(params: any) { return request( { url: 'statistics/systemApplyCount', method: 'get', params: params, }, { isNew: true, }, ); } /** * 查询月度系统使用情况 * @param params 查询参数 */ export function getMonthSystemDataCount(params: any) { return request( { url: 'statistics/monthSystemApplyCount', method: 'get', params: params, }, { isNew: true, }, ); } /** * 查询年度系统使用情况 * @param params 查询参数 */ export function getYearSystemDataCount(params: any) { return request( { url: 'statistics/yearSystemApplyCount', method: 'get', params: params, }, { isNew: true, }, ); } /** * 查询各个年龄段的求职人员数量 */ export function getJobUserCountByAgeRange(year: any, month: any) { return request( { url: 'statistics/jobUserCountByAgeRange', method: 'get', params: {year, month}, }, { isNew: true, }, ); } /** * 查询各重点人员类别在各学历的分布情况 */ export function getJobUserCountByPersonType(year: any, month: any) { return request( { url: 'statistics/jobUserCountByPersonType', method: 'get', params: {year, month}, }, { isNew: true, }, ); } /** * 查询各区县的普通失业人员与就业困难人员情况 */ export function getJobUserByRegionAndDifficulty(params: any) { return request( { url: 'statistics/jobUserByRegionAndDifficulty', method: 'get', params: params, }, { isNew: true, }, ); } /** * 查询各区县的已就业人员 */ export function getEmployedJobUserCount() { return request( { url: 'statistics/employedJobUserCount', method: 'get', params: {}, }, { isNew: true, }, ); } /** * 查询各驿站的业务数据情况 * @param params 查询参数 */ export function getSystemApplyCountBySite(params: any) { return request( { url: 'statistics/systemApplyCountBySite', method: 'get', params: params, }, { isNew: true, }, ); } /** * 查询各区县的企业与岗位数量 * @param params 查询参数 */ export function getCompanyAndPostByRegion(params: any) { return request( { url: 'statistics/companyAndPostCountByRegion', method: 'get', params: params, }, { isNew: true, }, ); } /** * 查询企业规模情况 */ export function getCompanyModelCount() { return request( { url: 'statistics/companyModelCount', method: 'get', params: {}, }, { isNew: true, }, ); }