summaryrefslogtreecommitdiff
path: root/src/utils/api.js
diff options
context:
space:
mode:
author刘洪洪 <[email protected]>2024-11-28 17:14:49 +0800
committer刘洪洪 <[email protected]>2024-11-28 17:14:49 +0800
commitb1612f2b4045b86300b1c11f2633476e324a8d95 (patch)
treee965802abef21455eac0aeea4b77ca4d717db6c0 /src/utils/api.js
parentd039a0877344116af7d2e026fb8b5113ff0c0bf3 (diff)
fix: 还原实体界面修改HEADdev
Diffstat (limited to 'src/utils/api.js')
-rw-r--r--src/utils/api.js31
1 files changed, 11 insertions, 20 deletions
diff --git a/src/utils/api.js b/src/utils/api.js
index bfe913f9..4b615a69 100644
--- a/src/utils/api.js
+++ b/src/utils/api.js
@@ -7,7 +7,6 @@ import axios from 'axios'
import { sortByOrderNum } from '@/permission'
import { storageKey } from '@/utils/constants'
const apiVersion = BASE_CONFIG.apiVersion
-const apiVersion2 = BASE_CONFIG.apiVersion2
export const api = {
// 系统相关
@@ -355,32 +354,24 @@ export const api = {
ipTrafficMap: apiVersion + '/entity/explorer/detail/traffic/map/ip', // ip流量地图
appTrafficMap: apiVersion + '/entity/explorer/detail/traffic/map/app', // app流量地图
summaryCount: apiVersion + '/entity/explorer/query/summaryCount', // 实体基数统计
- aggCountry: apiVersion2 + '/entity/explorer/top/aggCountry', // 国家实体基数统计
- aggIPAsn: apiVersion2 + '/entity/explorer/top/agg-ip-asn', // ASN实体基数统计
- aggCity: apiVersion2 + '/entity/explorer/top/aggCity', // 城市实体基数统计
- aggIPIsp: apiVersion2 + '/entity/explorer/top/agg-ip-isp', // ip-iap实体基数统计
- aggPort: apiVersion2 + '/entity/explorer/top/aggPort', // 端口实体基数统计
- aggDomain: apiVersion2 + '/entity/explorer/top/aggDomainCategory', // 域名类别实体基数统计
- aggAppCategory: apiVersion2 + '/entity/explorer/top/aggAppCategory', // app类别实体基数统计
- aggTag: apiVersion2 + '/entity/explorer/top/aggTag', // 标签实体基数统计
+ aggCountry: apiVersion + '/entity/explorer/top/aggCountry', // 国家实体基数统计
+ aggIPAsn: apiVersion + '/entity/explorer/top/agg-ip-asn', // ASN实体基数统计
+ aggCity: apiVersion + '/entity/explorer/top/aggCity', // 城市实体基数统计
+ aggIPIsp: apiVersion + '/entity/explorer/top/agg-ip-isp', // ip-iap实体基数统计
+ aggPort: apiVersion + '/entity/explorer/top/aggPort', // 端口实体基数统计
+ aggDomain: apiVersion + '/entity/explorer/top/aggDomainCategory', // 域名类别实体基数统计
+ aggAppCategory: apiVersion + '/entity/explorer/top/aggAppCategory', // app类别实体基数统计
+ aggTag: apiVersion + '/entity/explorer/top/aggTag', // 标签实体基数统计
domainSecurity: apiVersion + '/entity/explorer/detail/event/security/domain', // domain安全事件详情
ipSecurity: apiVersion + '/entity/explorer/detail/event/security/ip', // ip安全事件详情
appSecurity: apiVersion + '/entity/explorer/detail/event/security/app', // app安全事件详情
domainEventPerformance: apiVersion + '/entity/explorer/detail/event/performance/domain', // domain服务质量详情
ipEventPerformance: apiVersion + '/entity/explorer/detail/event/performance/ip', // ip服务质量详情
appEventPerformance: apiVersion + '/entity/explorer/detail/event/performance/app', // app服务质量详情
- entityActive: apiVersion2 + '/entity/explorer/overview/active', // entity首页active数据概览
+ entityActive: apiVersion + '/entity/explorer/overview/active', // entity首页active数据概览
entityNew: apiVersion + '/entity/explorer/overview/new', // entity首页new数据概览
- entityTotal: apiVersion2 + '/entity/explorer/overview/total', // entity首页total数据概览
- subscriberRelatedApp: apiVersion + '/entity/explorer/detail/subscriber/relate/apps', // subscriber相关app
- aggOperator: apiVersion2 + '/entity/explorer/top/aggOperator', // cell实体基数统计
- aggSuperAdminArea: apiVersion2 + '/entity/explorer/top/aggSuperAdminArea', // 地区实体基数统计
- aggTechnology: apiVersion2 + '/entity/explorer/top/aggTechnology', // 通信技术实体基数统计
- cellBasicInfo: apiVersion2 + '/entity/detail/basic/cell', // cell实体响应
- cellThroughput: apiVersion2 + '/entity/explorer/detail/traffic/throughput/cell', // cell实体流量信息
- cellPerformance: apiVersion2 + '/entity/explorer/detail/traffic/performance/cell', // cell网络质量
- activeSubscriberTrend: apiVersion2 + '/entity/detail/cell/activeSubscriberTrend', // cell中活跃的subscriber趋势统计
- activeSubscriberInfo: apiVersion2 + '/entity/detail/cell/activeSubscriberInfo' // 活跃Subscriber地图列表
+ entityTotal: apiVersion + '/entity/explorer/overview/total', // entity首页total数据概览
+ subscriberRelatedApp: apiVersion + '/entity/explorer/detail/subscriber/relate/apps' // subscriber相关app
}
},
location: {