diff --git a/src/utils/api.js b/src/utils/api.js
index 0a65fc4a..7e5e7b6d 100644
--- a/src/utils/api.js
+++ b/src/utils/api.js
@@ -358,7 +358,8 @@ export const api = {
trend: apiVersion + '/locationIntelligence/active/trend',
count: apiVersion + '/locationIntelligence/active/count',
baseStation: apiVersion + '/locationIntelligence/baseStation',
- followedSubscriber: apiVersion + '/locationIntelligence/followed/subscribers'
+ followedSubscriber: apiVersion + '/locationIntelligence/followed/subscribers',
+ tracking: apiVersion + '/locationIntelligence/trace/tracking'
}
}
diff --git a/src/utils/constants.js b/src/utils/constants.js
index 955f8c50..ce2d5094 100644
--- a/src/utils/constants.js
+++ b/src/utils/constants.js
@@ -46,7 +46,8 @@ export const storageKey = {
userCustomizationConfig: 'userCustomizationConfig',
linkInfo: 'cn-link-info',
history: 'cn-history',
- schemaEntityExplore: 'schema_entity_explore'
+ schemaEntityExplore: 'schema_entity_explore',
+ trackingSubscriberIds: 'tracking-subscriber-ids'
}
export const largeCountryList = ['CN', 'US', 'RU', 'AU', 'CA', 'KZ', 'IN', 'BR']
diff --git a/src/views/location/Index.vue b/src/views/location/Index.vue
index e971c1ff..f9771a0e 100644
--- a/src/views/location/Index.vue
+++ b/src/views/location/Index.vue
@@ -4,6 +4,7 @@