2.7 修改弹窗
This commit is contained in:
@ -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 }
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user