12.26 监控大屏
This commit is contained in:
156
src/pages/ElecEvaluation/Monitor/service.ts
Normal file
156
src/pages/ElecEvaluation/Monitor/service.ts
Normal file
@ -0,0 +1,156 @@
|
||||
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 }
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user