2.7 修改弹窗

This commit is contained in:
jl-zhoujl2
2023-02-07 15:34:20 +08:00
parent e58d05bbca
commit 585471d9a1
5 changed files with 172 additions and 96 deletions

View File

@ -193,25 +193,28 @@ export async function getTodayInfoAPI() {
/**
* 今日开标-评标阶段10小时未评标
*/
export async function getUnopenTenAPI() {
export async function getUnopenTenAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/api/evaluation/today/unopen/ten', {
method: 'GET',
method: 'POST',
data: { ...data },
});
}
/**
* 今日开标-评标阶段6小时未评标
*/
export async function getUnopenSixAPI() {
export async function getUnopenSixAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/api/evaluation/today/unopen/six', {
method: 'GET',
method: 'POST',
data: { ...data },
});
}
/**
* 今日开标-解密成功率
*/
export async function getDecryptSuccessRateTodayAPI() {
export async function getDecryptSuccessRateTodayAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptSuccessRateToday', {
method: 'GET',
method: 'POST',
data: { ...data }
});
}