12.28 智能招标采购室-第二版

This commit is contained in:
jl-zhoujl2
2022-12-28 17:29:12 +08:00
parent e30573e862
commit 576ac70ce4
8 changed files with 522 additions and 513 deletions

View File

@ -51,6 +51,35 @@ export async function getActiveSupplierAPI() {
});
}
/**
* 首页-参与供应商数
*/
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小时未开标数量
*/
@ -100,6 +129,24 @@ export async function getDecryptDataAPI() {
});
}
/**
* 异常监控-评审室关闭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',
});
}
/**
* 今日开标-评标阶段,评标及时率
*/
@ -146,11 +193,18 @@ export async function getProvinceActiveSupplierInfoAPI() {
}
/**
* 供应商概况-参与供应商
* 招标代理机构概况-相关统计数据
*/
export async function getSupplierCountAPI(params: any) {
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierCount', {
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',
params: { ...params }
});
}