import request from '@/utils/request'; /** * 首页-今日开标 * @param data */ export async function getTodayOpeningAPI(data: any) { return request('/api/biz-service-ebtp-statistics/opening/getTodayOpening', { method: 'POST', data: { ...data }, }); } /** * 首页-地图 * @param data */ export async function getReviewDistributionAPI() { return request('/api/biz-service-ebtp-statistics/opening/getProvincesList', { method: 'GET', }); } /** * 首页-开标大厅资源 * @param data */ export async function getOpeningListAPI(data: any) { return request('/api/biz-service-ebtp-statistics/opening/openList', { method: 'POST', data: { ...data }, }); } /** * 首页-上面前三个指标和招标代理实施项目统计 * @param data */ export async function getAnnualAndTenderAgentAPI() { return request('/api/biz-service-ebtp-statistics/indexMonitor/getProjectData', { method: 'GET', }); } /** * 首页-活跃供应商 * @param data */ export async function getActiveSupplierAPI() { return request('/api/biz-service-ebtp-statistics/indexMonitor/indexQuerySupplier', { method: 'GET', }); } /** * 首页-参与供应商数 */ export async function getSupplierCountAPI(params: any) { return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierCount', { method: 'GET', params: { ...params } }); } /** * 首页-公告公示数量 */ export async function getAnnoCountAPI(params: any) { return request('/api/biz-service-ebtp-statistics/indexMonitor/annoCount', { method: 'GET', params: { ...params } }); } /** * 首页-评审专家数量 */ export async function getExpertNumberAPI(params: any) { return request(`/api/biz-service-ebtp-statistics/api/evaluation/monitor/expertNumber/${params}`, { method: 'GET', }); } /** * 异常监控-超过1小时未开标数量 * @param data */ export async function getNoOpenNumberAPI(data: any) { return request('/api/biz-service-ebtp-statistics/opening/noOpenNumber', { method: 'POST', data: { ...data }, }); } /** * 异常监控-开启评审后3日未结束评标 */ export async function getThreeDayNoEndAPI() { return request('/api/biz-service-ebtp-statistics/api/evaluation/exception/threedaynoend', { method: 'GET', }); } /** * 异常监控-开启评审后3日未结束评标-数量 */ export async function getThreeDayNoEndCountAPI() { return request('/api/biz-service-ebtp-statistics/api/evaluation/exception/threedaynoend/count', { method: 'GET', }); } /** * 异常监控-超过1小时未开标数量-列表 * @param data */ export async function getNoOpenListAPI(data: any) { return request('/api/biz-service-ebtp-statistics/opening/noOpenList', { method: 'POST', data: { ...data }, }); } /** * 异常监控-开标后超过6小时未开启评审室-列表 * @param data */ export async function getNoOpenAssessListAPI(data: any) { return request('/api/biz-service-ebtp-statistics/opening/noOpenAssessList', { method: 'POST', data: { ...data }, }); } /** * 异常监控-解密异常、mac地址相同及相关项目列表 */ export async function getDecryptDataAPI() { return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptData', { method: 'GET', }); } /** * 异常监控-评审室关闭3日内未发布公示数 */ export async function getThreeDaysUnSendAnnoCountAPI() { return request('/api/biz-service-ebtp-statistics/exceptionMonitor/threeDaysUnSendAnnoCount', { method: 'GET', }); } /** * 异常监控-评审室关闭3日内未发布公示列表 */ export async function getThreeDaysUnSendAnnoListAPI() { return request('/api/biz-service-ebtp-statistics/exceptionMonitor/threeDaysUnSendAnnoList', { method: 'GET', }); } /** * 今日开标-评标阶段,评标及时率 */ export async function getTodayInfoAPI() { return request('/api/biz-service-ebtp-statistics/api/evaluation/today/info', { method: 'GET', }); } /** * 今日开标-评标阶段10小时未评标 */ export async function getUnopenTenAPI() { return request('/api/biz-service-ebtp-statistics/api/evaluation/today/unopen/ten', { method: 'GET', }); } /** * 今日开标-评标阶段6小时未评标 */ export async function getUnopenSixAPI() { return request('/api/biz-service-ebtp-statistics/api/evaluation/today/unopen/six', { method: 'GET', }); } /** * 今日开标-解密成功率 */ export async function getDecryptSuccessRateTodayAPI() { return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptSuccessRateToday', { method: 'GET', }); } /** * 供应商概况-上面六个指标 */ export async function getSupplierInfoAPI() { return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierInfo', { method: 'GET', }); } /** * 供应商概况-全国活跃供应商排名 */ export async function getActiveSupplierRankAPI() { return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/activeSupplierRank', { method: 'GET', }); } /** * 供应商概况-省份活跃供应商 */ export async function getProvinceActiveSupplierInfoAPI() { return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/provinceActiveSupplierInfo', { method: 'GET', }); } /** * 招标代理机构概况-相关统计数据 */ export async function getTenderAgentDataAPI() { return request('/api/biz-service-ebtp-statistics/tenderAgent/getTenderAgentData', { method: 'GET', }); } /** * 招标代理机构概况-代理分布省分 */ export async function getProvinceByAgencyAPI(agencyId: any) { return request(`/api/biz-service-ebtp-statistics/tenderAgent/getProvinceByAgency/${agencyId}`, { method: 'GET', }); } /** * 首页-获取评标室监控列表 * @param data * @returns */ export async function getMonitorListAPI(data: any) { return request('/api/biz-service-ebtp-evaluation/v1/screen/getReviewRoomList', { method: 'POST', data: data, }); }