1.5 第十版
This commit is contained in:
@ -35,8 +35,8 @@ export async function getOpeningListAPI(data: any) {
|
||||
* 首页-上面前三个指标和招标代理实施项目统计
|
||||
* @param data
|
||||
*/
|
||||
export async function getAnnualAndTenderAgentAPI() {
|
||||
return request('/api/biz-service-ebtp-statistics/indexMonitor/getProjectData', {
|
||||
export async function getAnnualAndTenderAgentAPI(year: any) {
|
||||
return request(`/api/biz-service-ebtp-statistics/indexMonitor/getProjectData/${year}`, {
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
@ -45,8 +45,8 @@ export async function getAnnualAndTenderAgentAPI() {
|
||||
* 首页-活跃供应商
|
||||
* @param data
|
||||
*/
|
||||
export async function getActiveSupplierAPI() {
|
||||
return request('/api/biz-service-ebtp-statistics/indexMonitor/indexQuerySupplier', {
|
||||
export async function getActiveSupplierAPI(params: any) {
|
||||
return request(`/api/biz-service-ebtp-statistics/indexMonitor/indexQuerySupplier/${params}`, {
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
@ -55,9 +55,8 @@ export async function getActiveSupplierAPI() {
|
||||
* 首页-参与供应商数
|
||||
*/
|
||||
export async function getSupplierCountAPI(params: any) {
|
||||
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierCount', {
|
||||
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierCount/${params}`, {
|
||||
method: 'GET',
|
||||
params: { ...params }
|
||||
});
|
||||
}
|
||||
|
||||
@ -65,9 +64,8 @@ export async function getSupplierCountAPI(params: any) {
|
||||
* 首页-公告公示数量
|
||||
*/
|
||||
export async function getAnnoCountAPI(params: any) {
|
||||
return request('/api/biz-service-ebtp-statistics/indexMonitor/annoCount', {
|
||||
return request(`/api/biz-service-ebtp-statistics/indexMonitor/annoCount/${params}`, {
|
||||
method: 'GET',
|
||||
params: { ...params }
|
||||
});
|
||||
}
|
||||
|
||||
@ -131,6 +129,17 @@ export async function getNoOpenAssessListAPI(data: any) {
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 异常监控-开标后超过6小时未开启评审室-数量
|
||||
* @param data
|
||||
*/
|
||||
export async function getNoOpenAssessNumberAPI(data: any) {
|
||||
return request('/api/biz-service-ebtp-statistics/opening/noOpenAssessNumber', {
|
||||
method: 'POST',
|
||||
data: { ...data },
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 异常监控-解密异常、mac地址相同及相关项目列表
|
||||
*/
|
||||
@ -195,8 +204,8 @@ export async function getDecryptSuccessRateTodayAPI() {
|
||||
/**
|
||||
* 供应商概况-上面六个指标
|
||||
*/
|
||||
export async function getSupplierInfoAPI() {
|
||||
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierInfo', {
|
||||
export async function getSupplierInfoAPI(params: any) {
|
||||
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/supplierInfo/${params}`, {
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
@ -204,8 +213,8 @@ export async function getSupplierInfoAPI() {
|
||||
/**
|
||||
* 供应商概况-全国活跃供应商排名
|
||||
*/
|
||||
export async function getActiveSupplierRankAPI() {
|
||||
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/activeSupplierRank', {
|
||||
export async function getActiveSupplierRankAPI(params: any) {
|
||||
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/activeSupplierRank/${params}`, {
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
@ -213,8 +222,8 @@ export async function getActiveSupplierRankAPI() {
|
||||
/**
|
||||
* 供应商概况-省份活跃供应商
|
||||
*/
|
||||
export async function getProvinceActiveSupplierInfoAPI() {
|
||||
return request('/api/biz-service-ebtp-statistics/v1/tenderMonitor/provinceActiveSupplierInfo', {
|
||||
export async function getProvinceActiveSupplierInfoAPI(params: any) {
|
||||
return request(`/api/biz-service-ebtp-statistics/v1/tenderMonitor/provinceActiveSupplierInfo/${params}`, {
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
@ -222,16 +231,16 @@ export async function getProvinceActiveSupplierInfoAPI() {
|
||||
/**
|
||||
* 招标代理机构概况-相关统计数据
|
||||
*/
|
||||
export async function getTenderAgentDataAPI() {
|
||||
return request('/api/biz-service-ebtp-statistics/tenderAgent/getTenderAgentData', {
|
||||
export async function getTenderAgentDataAPI(year: string) {
|
||||
return request('/api/biz-service-ebtp-statistics/tenderAgent/getTenderAgentData/' + year, {
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
/**
|
||||
* 招标代理机构概况-代理分布省分
|
||||
*/
|
||||
export async function getProvinceByAgencyAPI(agencyId: any) {
|
||||
return request(`/api/biz-service-ebtp-statistics/tenderAgent/getProvinceByAgency/${agencyId}`, {
|
||||
export async function getProvinceByAgencyAPI(agencyId: any, year: any) {
|
||||
return request(`/api/biz-service-ebtp-statistics/tenderAgent/getProvinceByAgency/${agencyId}/${year}`, {
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user