Files
fe_service_ebtp_frontend/src/pages/ElecEvaluation/Monitor/service.ts

156 lines
3.7 KiB
TypeScript
Raw Normal View History

2022-12-26 09:01:17 +08:00
import request from '@/utils/request';
/**
* -
* @param data
*/
export async function getTodayOpeningAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/opening/getTodayOpening', {
method: 'POST',
data: { ...data },
});
}
/**
* -
* @param data
*/
export async function getReviewDistributionAPI() {
return request('/api/biz-service-ebtp-statistics/opening/getProvincesList', {
method: 'GET',
});
}
/**
* -
* @param data
*/
export async function getOpeningListAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/opening/openList', {
method: 'POST',
data: { ...data },
});
}
/**
* -
* @param data
*/
export async function getAnnualAndTenderAgentAPI() {
return request('/api/biz-service-ebtp-statistics/indexMonitor/getProjectData', {
method: 'GET',
});
}
/**
* -
* @param data
*/
export async function getActiveSupplierAPI() {
return request('/api/biz-service-ebtp-statistics/indexMonitor/indexQuerySupplier', {
method: 'GET',
});
}
/**
* -1
*/
export async function getNoOpenNumberAPI() {
return request('/api/biz-service-ebtp-statistics/opening/noOpenNumber', {
method: 'POST',
});
}
/**
* -3
*/
export async function getThreeDayNoEndAPI() {
return request('/api/biz-service-ebtp-statistics/api/evaluation/exception/threedaynoend', {
method: 'GET',
});
}
/**
* -1-
* @param data
*/
export async function getNoOpenListAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/opening/noOpenList', {
method: 'POST',
data: { ...data },
});
}
/**
* -6-
* @param data
*/
export async function getNoOpenAssessListAPI(data: any) {
return request('/api/biz-service-ebtp-statistics/opening/noOpenAssessList', {
method: 'POST',
data: { ...data },
});
}
/**
* -mac地址相同及相关项目列表
*/
export async function getDecryptDataAPI() {
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptData', {
method: 'GET',
});
}
/**
* -
*/
export async function getTodayInfoAPI() {
return request('/api/biz-service-ebtp-statistics/api/evaluation/today/info', {
method: 'GET',
});
}
/**
* -
*/
export async function getDecryptSuccessRateTodayAPI() {
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptSuccessRateToday', {
method: 'GET',
});
}
/**
* -
*/
export async function getSupplierInfoAPI() {
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierInfo', {
method: 'GET',
});
}
/**
* -
*/
export async function getActiveSupplierRankAPI() {
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/activeSupplierRank', {
method: 'GET',
});
}
/**
* -
*/
export async function getProvinceActiveSupplierInfoAPI() {
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/provinceActiveSupplierInfo', {
method: 'GET',
});
}
/**
* -
*/
export async function getSupplierCountAPI(params: any) {
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierCount', {
method: 'GET',
params: { ...params }
});
}