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
|
|
|
|
|
*/
|
2023-01-05 17:26:37 +08:00
|
|
|
|
export async function getAnnualAndTenderAgentAPI(year: any) {
|
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/indexMonitor/getProjectData/${year}`, {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 首页-活跃供应商
|
|
|
|
|
* @param data
|
|
|
|
|
*/
|
2023-01-05 17:26:37 +08:00
|
|
|
|
export async function getActiveSupplierAPI(params: any) {
|
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/indexMonitor/indexQuerySupplier/${params}`, {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-28 17:29:12 +08:00
|
|
|
|
/**
|
|
|
|
|
* 首页-参与供应商数
|
|
|
|
|
*/
|
|
|
|
|
export async function getSupplierCountAPI(params: any) {
|
2023-01-06 13:46:42 +08:00
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierCount`, {
|
2022-12-28 17:29:12 +08:00
|
|
|
|
method: 'GET',
|
2023-01-06 13:46:42 +08:00
|
|
|
|
params: params
|
2022-12-28 17:29:12 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 首页-公告公示数量
|
|
|
|
|
*/
|
|
|
|
|
export async function getAnnoCountAPI(params: any) {
|
2023-01-05 17:26:37 +08:00
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/indexMonitor/annoCount/${params}`, {
|
2022-12-28 17:29:12 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 首页-评审专家数量
|
|
|
|
|
*/
|
|
|
|
|
export async function getExpertNumberAPI(params: any) {
|
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/api/evaluation/monitor/expertNumber/${params}`, {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-26 09:01:17 +08:00
|
|
|
|
/**
|
|
|
|
|
* 异常监控-超过1小时未开标数量
|
2022-12-30 15:27:59 +08:00
|
|
|
|
* @param data
|
2022-12-26 09:01:17 +08:00
|
|
|
|
*/
|
2022-12-30 15:27:59 +08:00
|
|
|
|
export async function getNoOpenNumberAPI(data: any) {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
return request('/api/biz-service-ebtp-statistics/opening/noOpenNumber', {
|
|
|
|
|
method: 'POST',
|
2022-12-30 15:27:59 +08:00
|
|
|
|
data: { ...data },
|
2022-12-26 09:01:17 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 异常监控-开启评审后3日未结束评标
|
|
|
|
|
*/
|
|
|
|
|
export async function getThreeDayNoEndAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/api/evaluation/exception/threedaynoend', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-30 15:27:59 +08:00
|
|
|
|
/**
|
|
|
|
|
* 异常监控-开启评审后3日未结束评标-数量
|
|
|
|
|
*/
|
|
|
|
|
export async function getThreeDayNoEndCountAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/api/evaluation/exception/threedaynoend/count', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-26 09:01:17 +08:00
|
|
|
|
/**
|
|
|
|
|
* 异常监控-超过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 },
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-05 17:26:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* 异常监控-开标后超过6小时未开启评审室-数量
|
|
|
|
|
* @param data
|
|
|
|
|
*/
|
|
|
|
|
export async function getNoOpenAssessNumberAPI(data: any) {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/opening/noOpenAssessNumber', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: { ...data },
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-26 09:01:17 +08:00
|
|
|
|
/**
|
|
|
|
|
* 异常监控-解密异常、mac地址相同及相关项目列表
|
|
|
|
|
*/
|
|
|
|
|
export async function getDecryptDataAPI() {
|
2023-01-02 20:37:50 +08:00
|
|
|
|
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptDataNow', {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-28 17:29:12 +08:00
|
|
|
|
/**
|
|
|
|
|
* 异常监控-评审室关闭3日内未发布公示数
|
|
|
|
|
*/
|
|
|
|
|
export async function getThreeDaysUnSendAnnoCountAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/threeDaysUnSendAnnoCount', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 异常监控-评审室关闭3日内未发布公示列表
|
|
|
|
|
*/
|
|
|
|
|
export async function getThreeDaysUnSendAnnoListAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/threeDaysUnSendAnnoList', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-26 09:01:17 +08:00
|
|
|
|
/**
|
|
|
|
|
* 今日开标-评标阶段,评标及时率
|
|
|
|
|
*/
|
|
|
|
|
export async function getTodayInfoAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/api/evaluation/today/info', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-30 15:27:59 +08:00
|
|
|
|
/**
|
|
|
|
|
* 今日开标-评标阶段10小时未评标
|
|
|
|
|
*/
|
|
|
|
|
export async function getUnopenTenAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/api/evaluation/today/unopen/ten', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 今日开标-评标阶段6小时未评标
|
|
|
|
|
*/
|
|
|
|
|
export async function getUnopenSixAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/api/evaluation/today/unopen/six', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
2022-12-26 09:01:17 +08:00
|
|
|
|
/**
|
|
|
|
|
* 今日开标-解密成功率
|
|
|
|
|
*/
|
|
|
|
|
export async function getDecryptSuccessRateTodayAPI() {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/exceptionMonitor/getDecryptSuccessRateToday', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 供应商概况-上面六个指标
|
|
|
|
|
*/
|
2023-01-05 17:26:37 +08:00
|
|
|
|
export async function getSupplierInfoAPI(params: any) {
|
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierInfo/${params}`, {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 供应商概况-全国活跃供应商排名
|
|
|
|
|
*/
|
2023-01-05 17:26:37 +08:00
|
|
|
|
export async function getActiveSupplierRankAPI(params: any) {
|
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/activeSupplierRank/${params}`, {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 供应商概况-省份活跃供应商
|
|
|
|
|
*/
|
2023-01-05 17:26:37 +08:00
|
|
|
|
export async function getProvinceActiveSupplierInfoAPI(params: any) {
|
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/provinceActiveSupplierInfo/${params}`, {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2022-12-28 17:29:12 +08:00
|
|
|
|
* 招标代理机构概况-相关统计数据
|
2022-12-26 09:01:17 +08:00
|
|
|
|
*/
|
2023-01-05 17:26:37 +08:00
|
|
|
|
export async function getTenderAgentDataAPI(year: string) {
|
|
|
|
|
return request('/api/biz-service-ebtp-statistics/tenderAgent/getTenderAgentData/' + year, {
|
2022-12-28 17:29:12 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 招标代理机构概况-代理分布省分
|
|
|
|
|
*/
|
2023-01-05 17:26:37 +08:00
|
|
|
|
export async function getProvinceByAgencyAPI(agencyId: any, year: any) {
|
|
|
|
|
return request(`/api/biz-service-ebtp-statistics/tenderAgent/getProvinceByAgency/${agencyId}/${year}`, {
|
2022-12-26 09:01:17 +08:00
|
|
|
|
method: 'GET',
|
|
|
|
|
});
|
2022-12-30 15:27:59 +08:00
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 首页-获取评标室监控列表
|
|
|
|
|
* @param data
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
|
|
|
|
export async function getMonitorListAPI(data: any) {
|
|
|
|
|
return request('/api/biz-service-ebtp-evaluation/v1/screen/getReviewRoomList', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: data,
|
|
|
|
|
});
|
2023-01-19 15:27:34 +08:00
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 评标室监控列表-获取评标室监控列表
|
|
|
|
|
* @param data
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
|
|
|
|
export async function getMonitorList(data: any) {
|
|
|
|
|
return request('/api/biz-service-ebtp-evaluation/v1/screen/getReviewRoomList', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: data,
|
|
|
|
|
});
|
2022-12-26 09:01:17 +08:00
|
|
|
|
}
|