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