12.30 第四版

This commit is contained in:
jl-zhoujl2
2022-12-30 15:27:59 +08:00
parent 48dcfe8aef
commit f10187dd9b
11 changed files with 971 additions and 494 deletions

View File

@ -82,10 +82,12 @@ export async function getExpertNumberAPI(params: any) {
/**
* 异常监控-超过1小时未开标数量
* @param data
*/
export async function getNoOpenNumberAPI() {
export async function getNoOpenNumberAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/opening/noOpenNumber', {
method: 'POST',
data: { ...data },
});
}
@ -98,6 +100,15 @@ export async function getThreeDayNoEndAPI() {
});
}
/**
* 异常监控-开启评审后3日未结束评标-数量
*/
export async function getThreeDayNoEndCountAPI() {
return request('/api/biz-service-ebtp-statistics/api/evaluation/exception/threedaynoend/count', {
method: 'GET',
});
}
/**
* 异常监控-超过1小时未开标数量-列表
* @param data
@ -156,6 +167,22 @@ export async function getTodayInfoAPI() {
});
}
/**
* 今日开标-评标阶段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',
});
}
/**
* 今日开标-解密成功率
*/
@ -207,4 +234,15 @@ 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,
});
}