This commit is contained in:
jl-zhoujl2
2023-02-06 08:58:35 +08:00
parent 3b2f680472
commit e58d05bbca
5 changed files with 423 additions and 148 deletions

View File

@ -93,9 +93,10 @@ export async function getNoOpenNumberAPI(data: any) {
/**
* 异常监控-开启评审后3日未结束评标
*/
export async function getThreeDayNoEndAPI() {
export async function getThreeDayNoEndAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/api/evaluation/exception/threedaynoend', {
method: 'GET',
method: 'POST',
data: { ...data },
});
}
@ -142,11 +143,22 @@ export async function getNoOpenAssessNumberAPI(data: any) {
}
/**
* 异常监控-解密异常、mac地址相同及相关项目列表
* 异常监控-解密异常列表、解密异常数量
*/
export async function getDecryptDataAPI() {
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptDataNow', {
method: 'GET',
export async function getDecryptExceptionListAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptExceptionList', {
method: 'POST',
data: { ...data }
});
}
/**
* 异常监控-mac地址相同列表mac地址相同数量
*/
export async function getMacSameListAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getMacSameList', {
method: 'POST',
data: { ...data }
});
}
@ -162,9 +174,10 @@ export async function getThreeDaysUnSendAnnoCountAPI() {
/**
* 异常监控-评审室关闭3日内未发布公示列表
*/
export async function getThreeDaysUnSendAnnoListAPI() {
export async function getThreeDaysUnSendAnnoListAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/threeDaysUnSendAnnoList', {
method: 'GET',
method: 'POST',
data: { ...data }
});
}