diff --git a/src/assets/css/font/iconfont.js b/src/assets/css/font/iconfont.js
index b57a4cc7..3a52f60c 100644
--- a/src/assets/css/font/iconfont.js
+++ b/src/assets/css/font/iconfont.js
@@ -1 +1 @@
-window._iconfont_svg_string_2614877='',function(l){var a=(a=document.getElementsByTagName("script"))[a.length-1],c=a.getAttribute("data-injectcss"),a=a.getAttribute("data-disable-injectsvg");if(!a){var h,o,i,m,v,z=function(a,c){c.parentNode.insertBefore(a,c)};if(c&&!l.__iconfont__svg__cssinject__){l.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(a){console&&console.log(a)}}h=function(){var a,c=document.createElement("div");c.innerHTML=l._iconfont_svg_string_2614877,(c=c.getElementsByTagName("svg")[0])&&(c.setAttribute("aria-hidden","true"),c.style.position="absolute",c.style.width=0,c.style.height=0,c.style.overflow="hidden",c=c,(a=document.body).firstChild?z(c,a.firstChild):a.appendChild(c))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(h,0):(o=function(){document.removeEventListener("DOMContentLoaded",o,!1),h()},document.addEventListener("DOMContentLoaded",o,!1)):document.attachEvent&&(i=h,m=l.document,v=!1,s(),m.onreadystatechange=function(){"complete"==m.readyState&&(m.onreadystatechange=null,t())})}function t(){v||(v=!0,i())}function s(){try{m.documentElement.doScroll("left")}catch(a){return void setTimeout(s,50)}t()}}(window);
\ No newline at end of file
+window._iconfont_svg_string_2614877 = '', (function (l) { var a = (a = document.getElementsByTagName('script'))[a.length - 1]; const c = a.getAttribute('data-injectcss'); var a = a.getAttribute('data-disable-injectsvg'); if (!a) { let h; let o; var i; var m; var v; const z = function (a, c) { c.parentNode.insertBefore(a, c) }; if (c && !l.__iconfont__svg__cssinject__) { l.__iconfont__svg__cssinject__ = !0; try { document.write('') } catch (a) { console && console.log(a) } }h = function () { let a; let c = document.createElement('div'); c.innerHTML = l._iconfont_svg_string_2614877, (c = c.getElementsByTagName('svg')[0]) && (c.setAttribute('aria-hidden', 'true'), c.style.position = 'absolute', c.style.width = 0, c.style.height = 0, c.style.overflow = 'hidden', c = c, (a = document.body).firstChild ? z(c, a.firstChild) : a.appendChild(c)) }, document.addEventListener ? ~['complete', 'loaded', 'interactive'].indexOf(document.readyState) ? setTimeout(h, 0) : (o = function () { document.removeEventListener('DOMContentLoaded', o, !1), h() }, document.addEventListener('DOMContentLoaded', o, !1)) : document.attachEvent && (i = h, m = l.document, v = !1, s(), m.onreadystatechange = function () { m.readyState == 'complete' && (m.onreadystatechange = null, t()) }) } function t () { v || (v = !0, i()) } function s () { try { m.documentElement.doScroll('left') } catch (a) { return void setTimeout(s, 50) }t() } }(window))
diff --git a/src/utils/constants.js b/src/utils/constants.js
index 7eaa6c17..520acc08 100644
--- a/src/utils/constants.js
+++ b/src/utils/constants.js
@@ -733,7 +733,7 @@ export const networkOverviewTabList = [
checked: true,
disabled: false,
panelId: drillDownPanelTypeMapping.networkOverview
- },{
+ }, {
label: 'network.protocols',
prop: 'l7Protocol',
queryCycleTotalProp: 'protocols',
@@ -741,7 +741,7 @@ export const networkOverviewTabList = [
checked: true,
disabled: false,
panelId: drillDownPanelTypeMapping.networkOverview
- },{
+ }, {
label: 'network.regions',
prop: 'superAdminArea',
queryCycleTotalProp: 'regions',
@@ -945,7 +945,7 @@ export const networkAppPerformanceTabList = [
checked: true,
disabled: false,
panelId: drillDownPanelTypeMapping.npmOverviewDomain
- },{
+ }, {
label: 'network.secondLevelDomains',
prop: 'domainSld',
queryCycleTotalProp: 'domainSld',
@@ -1164,7 +1164,7 @@ export const linkMonitorTabList = [
checked: true,
disabled: false,
panelId: drillDownPanelTypeMapping.linkMonitor
- },{
+ }, {
label: 'network.secondLevelDomains',
prop: 'domainSld',
queryCycleTotalProp: 'domainSld',
@@ -1172,7 +1172,7 @@ export const linkMonitorTabList = [
checked: true,
disabled: false,
panelId: drillDownPanelTypeMapping.linkMonitor
- }, {
+ }, {
label: 'network.protocols',
prop: 'l7Protocol',
queryCycleTotalProp: 'protocols',
@@ -1228,7 +1228,7 @@ export const linkMonitorTabList = [
checked: false,
disabled: false,
panelId: drillDownPanelTypeMapping.linkMonitor
- },{
+ }, {
label: 'network.protocolPorts',
prop: 'protocolPort',
queryCycleTotalProp: 'protocolports',
diff --git a/src/views/charts2/charts/linkMonitor/LinkBlock.vue b/src/views/charts2/charts/linkMonitor/LinkBlock.vue
index 8dc5e428..3fb0c379 100644
--- a/src/views/charts2/charts/linkMonitor/LinkBlock.vue
+++ b/src/views/charts2/charts/linkMonitor/LinkBlock.vue
@@ -205,8 +205,8 @@ export default {
if (info) {
const hit = data.find(d => d.linkId === info.linkId)
if (hit) {
- hit.egressBitsRate += d.egressBitsRate
- hit.ingressBitsRate += d.ingressBitsRate
+ hit.outBitsRate += d.outBitsRate
+ hit.inBitsRate += d.inBitsRate
if (info.direction === 'egress') {
hit.egressBandwidth = info.bandwidth
hit.egressLinkId = d.linkId
@@ -217,8 +217,8 @@ export default {
} else {
const hit = {
linkId: info.linkId,
- egressBitsRate: d.egressBitsRate,
- ingressBitsRate: d.ingressBitsRate
+ outBitsRate: d.outBitsRate,
+ inBitsRate: d.inBitsRate
}
if (info.direction === 'egress') {
hit.egressBandwidth = info.bandwidth
@@ -232,16 +232,16 @@ export default {
}
})
this.linkNoData = data.length === 0
- data.forEach((item) => {
- item.totalBitsRate = item.egressBitsRate + item.ingressBitsRate
+ data.forEach(item => {
+ item.totalBitsRate = item.outBitsRate + item.inBitsRate
})
const sorted = data.sort((a, b) => b.totalBitsRate - a.totalBitsRate)
const linkColors = colorGradientCalculation(this.gradientColor[0], this.gradientColor[1], sorted.map(s => s.totalBitsRate))
sorted.forEach((s, i) => {
s.color = linkColors[i]
- s.egressUsage = this.computeUsage(s.egressBitsRate, s.egressBandwidth)
- s.ingressUsage = this.computeUsage(s.ingressBitsRate, s.ingressBandwidth)
+ s.egressUsage = this.computeUsage(s.outBitsRate, s.egressBandwidth)
+ s.ingressUsage = this.computeUsage(s.inBitsRate, s.ingressBandwidth)
s.popoverWidth = this.computePopoverWidth(s.egressUsage, s.ingressUsage)
})
this.linkData = sorted
@@ -260,9 +260,9 @@ export default {
if (!this.nextHopNoData) {
let directionArr = []
nextHopData.forEach((item) => {
- if (item.egressLinkDirection !== '' && item.ingressLinkDirection !== '') {
- directionArr.push(item.egressLinkDirection)
- directionArr.push(item.ingressLinkDirection)
+ if (item.outLinkDirection !== '' && item.inLinkDirection !== '') {
+ directionArr.push(item.outLinkDirection)
+ directionArr.push(item.inLinkDirection)
}
})
directionArr = Array.from(new Set(directionArr))
@@ -270,15 +270,15 @@ export default {
const newNextHopData = []
this.nextHopNoData = directionArr.length === 0
directionArr.forEach((item1) => {
- const newObj = { egressBitsRate: 0, ingressBitsRate: 0, totalBitsRate: 0, linkDirection: item1 }
+ const newObj = { outBitsRate: 0, inBitsRate: 0, totalBitsRate: 0, linkDirection: item1 }
nextHopData.forEach((item2) => {
- if (item1 === item2.egressLinkDirection) {
- newObj.egressBitsRate += item2.egressBitsRate
- newObj.totalBitsRate += item2.egressBitsRate
+ if (item1 === item2.outLinkDirection) {
+ newObj.outBitsRate += item2.outBitsRate
+ newObj.totalBitsRate += item2.outBitsRate
}
- if (item1 === item2.ingressLinkDirection) {
- newObj.ingressBitsRate += item2.ingressBitsRate
- newObj.totalBitsRate += item2.ingressBitsRate
+ if (item1 === item2.inLinkDirection) {
+ newObj.inBitsRate += item2.inBitsRate
+ newObj.totalBitsRate += item2.inBitsRate
}
})
newNextHopData.push(newObj)
@@ -298,9 +298,9 @@ export default {
})
// 上行使用情况计算
- const egressUsage = this.computeUsage(s.egressBitsRate, sum)
+ const egressUsage = this.computeUsage(s.outBitsRate, sum)
// 下行使用情况计算
- const ingressUsage = this.computeUsage(s.ingressBitsRate, sum)
+ const ingressUsage = this.computeUsage(s.inBitsRate, sum)
s.egressUsage = egressUsage
s.ingressUsage = ingressUsage
s.popoverWidth = this.computePopoverWidth(egressUsage, ingressUsage)
diff --git a/src/views/entityExplorer/EntityGraph.vue b/src/views/entityExplorer/EntityGraph.vue
index 7af57cc2..db2aef6a 100644
--- a/src/views/entityExplorer/EntityGraph.vue
+++ b/src/views/entityExplorer/EntityGraph.vue
@@ -756,9 +756,9 @@ export default {
}
const rootNode = new Node(nodeType.rootNode, this.entity.entityName, {
entityType: this.entity.entityType,
- entityName: this.entity.entityName,
- /*x: coordinate.rootNode.fx,
- y: coordinate.rootNode.fy*/
+ entityName: this.entity.entityName
+ /* x: coordinate.rootNode.fx,
+ y: coordinate.rootNode.fy */
})
await rootNode.queryDetailData()
nodes.push(rootNode)
@@ -774,9 +774,9 @@ export default {
nodeType.listNode,
`${rootNode.id}__${k}-list`,
{
- entityType: k,
- /*x: coordinate[`${k}ListNode`].fx,
- y: coordinate[`${k}ListNode`].fy*/
+ entityType: k
+ /* x: coordinate[`${k}ListNode`].fx,
+ y: coordinate[`${k}ListNode`].fy */
},
rootNode
)
diff --git a/src/views/entityExplorer/testData.js b/src/views/entityExplorer/testData.js
index aee796ff..ad79a8cc 100644
--- a/src/views/entityExplorer/testData.js
+++ b/src/views/entityExplorer/testData.js
@@ -1,275 +1,275 @@
export default {
- "nodes": [
+ nodes: [
{
- "isRoot": true,
- "type": "circle",
- "id": "baidu.com",
- "label": "baidu.com",
- "size": 82,
- "x": 0,
- "y": 0,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored2.svg",
- "width": 36,
- "height": 30
+ isRoot: true,
+ type: 'circle',
+ id: 'baidu.com',
+ label: 'baidu.com',
+ size: 82,
+ x: 0,
+ y: 0,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored2.svg',
+ width: 36,
+ height: 30
},
- "style": {
- "fill": "white",
- "stroke": "#AFDEED",
- "lineWidth": 5
+ style: {
+ fill: 'white',
+ stroke: '#AFDEED',
+ lineWidth: 5
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "1",
- "childNodes": [
+ data: {
+ level: '1',
+ childNodes: [
{
- "id": "ip-1",
- "label": "Resolve IP(3)",
- "x": 0,
- "y": 300,
- "data": {
- "level": "2",
- "sourceName": "baidu.com",
- "sourceType": "domain",
- "type": "ip",
- "count": 3,
- "loaded": [
+ id: 'ip-1',
+ label: 'Resolve IP(3)',
+ x: 0,
+ y: 300,
+ data: {
+ level: '2',
+ sourceName: 'baidu.com',
+ sourceType: 'domain',
+ type: 'ip',
+ count: 3,
+ loaded: [
{
- "vertex": "116.178.71.35",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Xinjiang",
- "lngwgs": 87.555502,
- "city": "Urumqi City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 43.833288
+ vertex: '116.178.71.35',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Xinjiang',
+ lngwgs: 87.555502,
+ city: 'Urumqi City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 43.833288
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172831,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172831,
+ asn: '4837'
}
}
},
{
- "vertex": "119.249.102.33",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Hebei",
- "lngwgs": 115.481957,
- "city": "Baoding City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 38.879992
+ vertex: '119.249.102.33',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Hebei',
+ lngwgs: 115.481957,
+ city: 'Baoding City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 38.879992
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172932,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172932,
+ asn: '4837'
}
}
},
{
- "vertex": "27.221.27.35",
- "detail": {
- "location": {
- "continent": "Europe",
- "owner": "Vodafone GmbH",
- "knowledgeId": 1,
- "country": "Germany",
- "province": "Rheinland-Pfalz",
- "lngwgs": 8.207885,
- "city": "Freinsheim",
- "isp": "Vodafone GmbH",
- "isValid": 1,
- "latwgs": 49.501895
+ vertex: '27.221.27.35',
+ detail: {
+ location: {
+ continent: 'Europe',
+ owner: 'Vodafone GmbH',
+ knowledgeId: 1,
+ country: 'Germany',
+ province: 'Rheinland-Pfalz',
+ lngwgs: 8.207885,
+ city: 'Freinsheim',
+ isp: 'Vodafone GmbH',
+ isValid: 1,
+ latwgs: 49.501895
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172121,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172121,
+ asn: '4837'
}
}
}
],
- "childNodes": [
+ childNodes: [
{
- "id": "116.178.71.35",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '116.178.71.35',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "116.178.71.35",
- "data": {
- "vertex": "116.178.71.35",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Xinjiang",
- "lngwgs": 87.555502,
- "city": "Urumqi City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 43.833288
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '116.178.71.35',
+ data: {
+ vertex: '116.178.71.35',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Xinjiang',
+ lngwgs: 87.555502,
+ city: 'Urumqi City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 43.833288
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172831,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172831,
+ asn: '4837'
}
}
}
}
},
{
- "id": "119.249.102.33",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '119.249.102.33',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "119.249.102.33",
- "data": {
- "vertex": "119.249.102.33",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Hebei",
- "lngwgs": 115.481957,
- "city": "Baoding City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 38.879992
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '119.249.102.33',
+ data: {
+ vertex: '119.249.102.33',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Hebei',
+ lngwgs: 115.481957,
+ city: 'Baoding City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 38.879992
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172932,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172932,
+ asn: '4837'
}
}
}
}
},
{
- "id": "27.221.27.35",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '27.221.27.35',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "27.221.27.35",
- "data": {
- "vertex": "27.221.27.35",
- "detail": {
- "location": {
- "continent": "Europe",
- "owner": "Vodafone GmbH",
- "knowledgeId": 1,
- "country": "Germany",
- "province": "Rheinland-Pfalz",
- "lngwgs": 8.207885,
- "city": "Freinsheim",
- "isp": "Vodafone GmbH",
- "isValid": 1,
- "latwgs": 49.501895
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '27.221.27.35',
+ data: {
+ vertex: '27.221.27.35',
+ detail: {
+ location: {
+ continent: 'Europe',
+ owner: 'Vodafone GmbH',
+ knowledgeId: 1,
+ country: 'Germany',
+ province: 'Rheinland-Pfalz',
+ lngwgs: 8.207885,
+ city: 'Freinsheim',
+ isp: 'Vodafone GmbH',
+ isValid: 1,
+ latwgs: 49.501895
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172121,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172121,
+ asn: '4837'
}
}
}
@@ -277,669 +277,669 @@ export default {
}
]
},
- "type": "circle",
- "size": 66,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip.svg",
- "width": 24,
- "height": 22
+ type: 'circle',
+ size: 66,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip.svg',
+ width: 24,
+ height: 22
},
- "style": {
- "fill": "white",
- "stroke": "#A7B0B9",
- "lineWidth": 1
+ style: {
+ fill: 'white',
+ stroke: '#A7B0B9',
+ lineWidth: 1
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "edges": [
+ edges: [
{
- "id": "ip-1-116.178.71.35",
- "source": "ip-1",
- "target": "116.178.71.35",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-116.178.71.35',
+ source: 'ip-1',
+ target: '116.178.71.35',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "ip-1-119.249.102.33",
- "source": "ip-1",
- "target": "119.249.102.33",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-119.249.102.33',
+ source: 'ip-1',
+ target: '119.249.102.33',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "ip-1-27.221.27.35",
- "source": "ip-1",
- "target": "27.221.27.35",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-27.221.27.35',
+ source: 'ip-1',
+ target: '27.221.27.35',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
]
},
{
- "id": "domain-1",
- "label": "Subdomain(9)",
- "x": 260,
- "y": -150,
- "data": {
- "level": "2",
- "sourceName": "baidu.com",
- "sourceType": "domain",
- "type": "domain",
- "count": 9,
- "loaded": [
+ id: 'domain-1',
+ label: 'Subdomain(9)',
+ x: 260,
+ y: -150,
+ data: {
+ level: '2',
+ sourceName: 'baidu.com',
+ sourceType: 'domain',
+ type: 'domain',
+ count: 9,
+ loaded: [
{
- "vertex": "imeres.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'imeres.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "img0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'img0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "img1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'img1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "luimg.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'luimg.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "pics0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'pics0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "pics1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'pics1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "pn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'pn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "ss0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'ss0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "wjz-cdn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'wjz-cdn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
],
- "childNodes": [
+ childNodes: [
{
- "id": "imeres.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'imeres.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "imeres.baidu.com",
- "data": {
- "vertex": "imeres.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'imeres.baidu.com',
+ data: {
+ vertex: 'imeres.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "img0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'img0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "img0.baidu.com",
- "data": {
- "vertex": "img0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'img0.baidu.com',
+ data: {
+ vertex: 'img0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "img1.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'img1.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "img1.baidu.com",
- "data": {
- "vertex": "img1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'img1.baidu.com',
+ data: {
+ vertex: 'img1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "luimg.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'luimg.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "luimg.baidu.com",
- "data": {
- "vertex": "luimg.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'luimg.baidu.com',
+ data: {
+ vertex: 'luimg.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pics0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pics0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pics0.baidu.com",
- "data": {
- "vertex": "pics0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pics0.baidu.com',
+ data: {
+ vertex: 'pics0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pics1.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pics1.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pics1.baidu.com",
- "data": {
- "vertex": "pics1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pics1.baidu.com',
+ data: {
+ vertex: 'pics1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pn.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pn.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pn.baidu.com",
- "data": {
- "vertex": "pn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pn.baidu.com',
+ data: {
+ vertex: 'pn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "ss0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'ss0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "ss0.baidu.com",
- "data": {
- "vertex": "ss0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'ss0.baidu.com',
+ data: {
+ vertex: 'ss0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "wjz-cdn.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'wjz-cdn.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "wjz-cdn.baidu.com",
- "data": {
- "vertex": "wjz-cdn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'wjz-cdn.baidu.com',
+ data: {
+ vertex: 'wjz-cdn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
}
]
},
- "type": "circle",
- "size": 66,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain.svg",
- "width": 24,
- "height": 24
+ type: 'circle',
+ size: 66,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain.svg',
+ width: 24,
+ height: 24
},
- "style": {
- "fill": "white",
- "stroke": "#A7B0B9",
- "lineWidth": 1
+ style: {
+ fill: 'white',
+ stroke: '#A7B0B9',
+ lineWidth: 1
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "edges": [
+ edges: [
{
- "id": "domain-1-imeres.baidu.com",
- "source": "domain-1",
- "target": "imeres.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-imeres.baidu.com',
+ source: 'domain-1',
+ target: 'imeres.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-img0.baidu.com",
- "source": "domain-1",
- "target": "img0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-img0.baidu.com',
+ source: 'domain-1',
+ target: 'img0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-img1.baidu.com",
- "source": "domain-1",
- "target": "img1.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-img1.baidu.com',
+ source: 'domain-1',
+ target: 'img1.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-luimg.baidu.com",
- "source": "domain-1",
- "target": "luimg.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-luimg.baidu.com',
+ source: 'domain-1',
+ target: 'luimg.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pics0.baidu.com",
- "source": "domain-1",
- "target": "pics0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pics0.baidu.com',
+ source: 'domain-1',
+ target: 'pics0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pics1.baidu.com",
- "source": "domain-1",
- "target": "pics1.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pics1.baidu.com',
+ source: 'domain-1',
+ target: 'pics1.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pn.baidu.com",
- "source": "domain-1",
- "target": "pn.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pn.baidu.com',
+ source: 'domain-1',
+ target: 'pn.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-ss0.baidu.com",
- "source": "domain-1",
- "target": "ss0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-ss0.baidu.com',
+ source: 'domain-1',
+ target: 'ss0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-wjz-cdn.baidu.com",
- "source": "domain-1",
- "target": "wjz-cdn.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-wjz-cdn.baidu.com',
+ source: 'domain-1',
+ target: 'wjz-cdn.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
]
},
{
- "id": "app-1",
- "label": "Related APP(1)",
- "x": -260,
- "y": -150,
- "data": {
- "level": "2",
- "sourceName": "baidu.com",
- "sourceType": "domain",
- "type": "app",
- "count": 1,
- "loaded": [
+ id: 'app-1',
+ label: 'Related APP(1)',
+ x: -260,
+ y: -150,
+ data: {
+ level: '2',
+ sourceName: 'baidu.com',
+ sourceType: 'domain',
+ type: 'app',
+ count: 1,
+ loaded: [
{
- "vertex": "baidu",
- "detail": {
- "category": {
- "appName": "baidu",
- "isValid": 1,
- "appDescription": "Baidu is a Chinese search engine for websites, audio files and images. Baidu means \"\"One hundred degrees\"\" in English.",
- "appTechnology": "network-protocol",
- "appCategory": "general-internet",
- "updateTime": "2023-06-21 06:39:57",
- "knowledgeId": 12,
- "appLongname": "Baidu.com",
- "appCompanyCategory": "",
- "createTime": "2023-06-21 06:39:57",
- "appId": 548,
- "appCompany": "Baidu",
- "appRisk": 1,
- "appSubcategory": "internet-utility"
+ vertex: 'baidu',
+ detail: {
+ category: {
+ appName: 'baidu',
+ isValid: 1,
+ appDescription: 'Baidu is a Chinese search engine for websites, audio files and images. Baidu means ""One hundred degrees"" in English.',
+ appTechnology: 'network-protocol',
+ appCategory: 'general-internet',
+ updateTime: '2023-06-21 06:39:57',
+ knowledgeId: 12,
+ appLongname: 'Baidu.com',
+ appCompanyCategory: '',
+ createTime: '2023-06-21 06:39:57',
+ appId: 548,
+ appCompany: 'Baidu',
+ appRisk: 1,
+ appSubcategory: 'internet-utility'
}
}
}
],
- "childNodes": [
+ childNodes: [
{
- "id": "baidu",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/app-colored.svg",
- "width": 17,
- "height": 20
+ id: 'baidu',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/app-colored.svg',
+ width: 17,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "app",
- "name": "baidu",
- "data": {
- "vertex": "baidu",
- "detail": {
- "category": {
- "appName": "baidu",
- "isValid": 1,
- "appDescription": "Baidu is a Chinese search engine for websites, audio files and images. Baidu means \"\"One hundred degrees\"\" in English.",
- "appTechnology": "network-protocol",
- "appCategory": "general-internet",
- "updateTime": "2023-06-21 06:39:57",
- "knowledgeId": 12,
- "appLongname": "Baidu.com",
- "appCompanyCategory": "",
- "createTime": "2023-06-21 06:39:57",
- "appId": 548,
- "appCompany": "Baidu",
- "appRisk": 1,
- "appSubcategory": "internet-utility"
+ data: {
+ level: '2.5',
+ type: 'app',
+ name: 'baidu',
+ data: {
+ vertex: 'baidu',
+ detail: {
+ category: {
+ appName: 'baidu',
+ isValid: 1,
+ appDescription: 'Baidu is a Chinese search engine for websites, audio files and images. Baidu means ""One hundred degrees"" in English.',
+ appTechnology: 'network-protocol',
+ appCategory: 'general-internet',
+ updateTime: '2023-06-21 06:39:57',
+ knowledgeId: 12,
+ appLongname: 'Baidu.com',
+ appCompanyCategory: '',
+ createTime: '2023-06-21 06:39:57',
+ appId: 548,
+ appCompany: 'Baidu',
+ appRisk: 1,
+ appSubcategory: 'internet-utility'
}
}
}
@@ -947,36 +947,36 @@ export default {
}
]
},
- "type": "circle",
- "size": 66,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/app.svg",
- "width": 20,
- "height": 24
+ type: 'circle',
+ size: 66,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/app.svg',
+ width: 20,
+ height: 24
},
- "style": {
- "fill": "white",
- "stroke": "#A7B0B9",
- "lineWidth": 1
+ style: {
+ fill: 'white',
+ stroke: '#A7B0B9',
+ lineWidth: 1
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "edges": [
+ edges: [
{
- "id": "app-1-baidu",
- "source": "app-1",
- "target": "baidu",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'app-1-baidu',
+ source: 'app-1',
+ target: 'baidu',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
@@ -984,282 +984,282 @@ export default {
}
]
},
- "edges": [
+ edges: [
{
- "id": "baidu.com-ip-1",
- "source": "baidu.com",
- "target": "ip-1",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'baidu.com-ip-1',
+ source: 'baidu.com',
+ target: 'ip-1',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "baidu.com-domain-1",
- "source": "baidu.com",
- "target": "domain-1",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'baidu.com-domain-1',
+ source: 'baidu.com',
+ target: 'domain-1',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "baidu.com-app-1",
- "source": "baidu.com",
- "target": "app-1",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'baidu.com-app-1',
+ source: 'baidu.com',
+ target: 'app-1',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
]
},
{
- "id": "ip-1",
- "label": "Resolve IP(3)",
- "x": 0,
- "y": 300,
- "data": {
- "level": "2",
- "sourceName": "baidu.com",
- "sourceType": "domain",
- "type": "ip",
- "count": 3,
- "loaded": [
+ id: 'ip-1',
+ label: 'Resolve IP(3)',
+ x: 0,
+ y: 300,
+ data: {
+ level: '2',
+ sourceName: 'baidu.com',
+ sourceType: 'domain',
+ type: 'ip',
+ count: 3,
+ loaded: [
{
- "vertex": "116.178.71.35",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Xinjiang",
- "lngwgs": 87.555502,
- "city": "Urumqi City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 43.833288
+ vertex: '116.178.71.35',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Xinjiang',
+ lngwgs: 87.555502,
+ city: 'Urumqi City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 43.833288
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172831,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172831,
+ asn: '4837'
}
}
},
{
- "vertex": "119.249.102.33",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Hebei",
- "lngwgs": 115.481957,
- "city": "Baoding City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 38.879992
+ vertex: '119.249.102.33',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Hebei',
+ lngwgs: 115.481957,
+ city: 'Baoding City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 38.879992
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172932,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172932,
+ asn: '4837'
}
}
},
{
- "vertex": "27.221.27.35",
- "detail": {
- "location": {
- "continent": "Europe",
- "owner": "Vodafone GmbH",
- "knowledgeId": 1,
- "country": "Germany",
- "province": "Rheinland-Pfalz",
- "lngwgs": 8.207885,
- "city": "Freinsheim",
- "isp": "Vodafone GmbH",
- "isValid": 1,
- "latwgs": 49.501895
+ vertex: '27.221.27.35',
+ detail: {
+ location: {
+ continent: 'Europe',
+ owner: 'Vodafone GmbH',
+ knowledgeId: 1,
+ country: 'Germany',
+ province: 'Rheinland-Pfalz',
+ lngwgs: 8.207885,
+ city: 'Freinsheim',
+ isp: 'Vodafone GmbH',
+ isValid: 1,
+ latwgs: 49.501895
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172121,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172121,
+ asn: '4837'
}
}
}
],
- "childNodes": [
+ childNodes: [
{
- "id": "116.178.71.35",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '116.178.71.35',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "116.178.71.35",
- "data": {
- "vertex": "116.178.71.35",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Xinjiang",
- "lngwgs": 87.555502,
- "city": "Urumqi City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 43.833288
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '116.178.71.35',
+ data: {
+ vertex: '116.178.71.35',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Xinjiang',
+ lngwgs: 87.555502,
+ city: 'Urumqi City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 43.833288
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172831,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172831,
+ asn: '4837'
}
}
}
}
},
{
- "id": "119.249.102.33",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '119.249.102.33',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "119.249.102.33",
- "data": {
- "vertex": "119.249.102.33",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Hebei",
- "lngwgs": 115.481957,
- "city": "Baoding City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 38.879992
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '119.249.102.33',
+ data: {
+ vertex: '119.249.102.33',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Hebei',
+ lngwgs: 115.481957,
+ city: 'Baoding City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 38.879992
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172932,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172932,
+ asn: '4837'
}
}
}
}
},
{
- "id": "27.221.27.35",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '27.221.27.35',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "27.221.27.35",
- "data": {
- "vertex": "27.221.27.35",
- "detail": {
- "location": {
- "continent": "Europe",
- "owner": "Vodafone GmbH",
- "knowledgeId": 1,
- "country": "Germany",
- "province": "Rheinland-Pfalz",
- "lngwgs": 8.207885,
- "city": "Freinsheim",
- "isp": "Vodafone GmbH",
- "isValid": 1,
- "latwgs": 49.501895
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '27.221.27.35',
+ data: {
+ vertex: '27.221.27.35',
+ detail: {
+ location: {
+ continent: 'Europe',
+ owner: 'Vodafone GmbH',
+ knowledgeId: 1,
+ country: 'Germany',
+ province: 'Rheinland-Pfalz',
+ lngwgs: 8.207885,
+ city: 'Freinsheim',
+ isp: 'Vodafone GmbH',
+ isValid: 1,
+ latwgs: 49.501895
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172121,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172121,
+ asn: '4837'
}
}
}
@@ -1267,669 +1267,669 @@ export default {
}
]
},
- "type": "circle",
- "size": 66,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip.svg",
- "width": 24,
- "height": 22
+ type: 'circle',
+ size: 66,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip.svg',
+ width: 24,
+ height: 22
},
- "style": {
- "fill": "white",
- "stroke": "#A7B0B9",
- "lineWidth": 1
+ style: {
+ fill: 'white',
+ stroke: '#A7B0B9',
+ lineWidth: 1
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "edges": [
+ edges: [
{
- "id": "ip-1-116.178.71.35",
- "source": "ip-1",
- "target": "116.178.71.35",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-116.178.71.35',
+ source: 'ip-1',
+ target: '116.178.71.35',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "ip-1-119.249.102.33",
- "source": "ip-1",
- "target": "119.249.102.33",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-119.249.102.33',
+ source: 'ip-1',
+ target: '119.249.102.33',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "ip-1-27.221.27.35",
- "source": "ip-1",
- "target": "27.221.27.35",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-27.221.27.35',
+ source: 'ip-1',
+ target: '27.221.27.35',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
]
},
{
- "id": "domain-1",
- "label": "Subdomain(9)",
- "x": 260,
- "y": -150,
- "data": {
- "level": "2",
- "sourceName": "baidu.com",
- "sourceType": "domain",
- "type": "domain",
- "count": 9,
- "loaded": [
+ id: 'domain-1',
+ label: 'Subdomain(9)',
+ x: 260,
+ y: -150,
+ data: {
+ level: '2',
+ sourceName: 'baidu.com',
+ sourceType: 'domain',
+ type: 'domain',
+ count: 9,
+ loaded: [
{
- "vertex": "imeres.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'imeres.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "img0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'img0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "img1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'img1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "luimg.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'luimg.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "pics0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'pics0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "pics1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'pics1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "pn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'pn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "ss0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'ss0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
},
{
- "vertex": "wjz-cdn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ vertex: 'wjz-cdn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
],
- "childNodes": [
+ childNodes: [
{
- "id": "imeres.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'imeres.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "imeres.baidu.com",
- "data": {
- "vertex": "imeres.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'imeres.baidu.com',
+ data: {
+ vertex: 'imeres.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "img0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'img0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "img0.baidu.com",
- "data": {
- "vertex": "img0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'img0.baidu.com',
+ data: {
+ vertex: 'img0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "img1.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'img1.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "img1.baidu.com",
- "data": {
- "vertex": "img1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'img1.baidu.com',
+ data: {
+ vertex: 'img1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "luimg.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'luimg.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "luimg.baidu.com",
- "data": {
- "vertex": "luimg.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'luimg.baidu.com',
+ data: {
+ vertex: 'luimg.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pics0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pics0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pics0.baidu.com",
- "data": {
- "vertex": "pics0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pics0.baidu.com',
+ data: {
+ vertex: 'pics0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pics1.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pics1.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pics1.baidu.com",
- "data": {
- "vertex": "pics1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pics1.baidu.com',
+ data: {
+ vertex: 'pics1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pn.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pn.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pn.baidu.com",
- "data": {
- "vertex": "pn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pn.baidu.com',
+ data: {
+ vertex: 'pn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "ss0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'ss0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "ss0.baidu.com",
- "data": {
- "vertex": "ss0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'ss0.baidu.com',
+ data: {
+ vertex: 'ss0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "wjz-cdn.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'wjz-cdn.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "wjz-cdn.baidu.com",
- "data": {
- "vertex": "wjz-cdn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'wjz-cdn.baidu.com',
+ data: {
+ vertex: 'wjz-cdn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
}
]
},
- "type": "circle",
- "size": 66,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain.svg",
- "width": 24,
- "height": 24
+ type: 'circle',
+ size: 66,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain.svg',
+ width: 24,
+ height: 24
},
- "style": {
- "fill": "white",
- "stroke": "#A7B0B9",
- "lineWidth": 1
+ style: {
+ fill: 'white',
+ stroke: '#A7B0B9',
+ lineWidth: 1
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "edges": [
+ edges: [
{
- "id": "domain-1-imeres.baidu.com",
- "source": "domain-1",
- "target": "imeres.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-imeres.baidu.com',
+ source: 'domain-1',
+ target: 'imeres.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-img0.baidu.com",
- "source": "domain-1",
- "target": "img0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-img0.baidu.com',
+ source: 'domain-1',
+ target: 'img0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-img1.baidu.com",
- "source": "domain-1",
- "target": "img1.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-img1.baidu.com',
+ source: 'domain-1',
+ target: 'img1.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-luimg.baidu.com",
- "source": "domain-1",
- "target": "luimg.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-luimg.baidu.com',
+ source: 'domain-1',
+ target: 'luimg.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pics0.baidu.com",
- "source": "domain-1",
- "target": "pics0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pics0.baidu.com',
+ source: 'domain-1',
+ target: 'pics0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pics1.baidu.com",
- "source": "domain-1",
- "target": "pics1.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pics1.baidu.com',
+ source: 'domain-1',
+ target: 'pics1.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pn.baidu.com",
- "source": "domain-1",
- "target": "pn.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pn.baidu.com',
+ source: 'domain-1',
+ target: 'pn.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-ss0.baidu.com",
- "source": "domain-1",
- "target": "ss0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-ss0.baidu.com',
+ source: 'domain-1',
+ target: 'ss0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-wjz-cdn.baidu.com",
- "source": "domain-1",
- "target": "wjz-cdn.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-wjz-cdn.baidu.com',
+ source: 'domain-1',
+ target: 'wjz-cdn.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
]
},
{
- "id": "app-1",
- "label": "Related APP(1)",
- "x": -260,
- "y": -150,
- "data": {
- "level": "2",
- "sourceName": "baidu.com",
- "sourceType": "domain",
- "type": "app",
- "count": 1,
- "loaded": [
+ id: 'app-1',
+ label: 'Related APP(1)',
+ x: -260,
+ y: -150,
+ data: {
+ level: '2',
+ sourceName: 'baidu.com',
+ sourceType: 'domain',
+ type: 'app',
+ count: 1,
+ loaded: [
{
- "vertex": "baidu",
- "detail": {
- "category": {
- "appName": "baidu",
- "isValid": 1,
- "appDescription": "Baidu is a Chinese search engine for websites, audio files and images. Baidu means \"\"One hundred degrees\"\" in English.",
- "appTechnology": "network-protocol",
- "appCategory": "general-internet",
- "updateTime": "2023-06-21 06:39:57",
- "knowledgeId": 12,
- "appLongname": "Baidu.com",
- "appCompanyCategory": "",
- "createTime": "2023-06-21 06:39:57",
- "appId": 548,
- "appCompany": "Baidu",
- "appRisk": 1,
- "appSubcategory": "internet-utility"
+ vertex: 'baidu',
+ detail: {
+ category: {
+ appName: 'baidu',
+ isValid: 1,
+ appDescription: 'Baidu is a Chinese search engine for websites, audio files and images. Baidu means ""One hundred degrees"" in English.',
+ appTechnology: 'network-protocol',
+ appCategory: 'general-internet',
+ updateTime: '2023-06-21 06:39:57',
+ knowledgeId: 12,
+ appLongname: 'Baidu.com',
+ appCompanyCategory: '',
+ createTime: '2023-06-21 06:39:57',
+ appId: 548,
+ appCompany: 'Baidu',
+ appRisk: 1,
+ appSubcategory: 'internet-utility'
}
}
}
],
- "childNodes": [
+ childNodes: [
{
- "id": "baidu",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/app-colored.svg",
- "width": 17,
- "height": 20
+ id: 'baidu',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/app-colored.svg',
+ width: 17,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "app",
- "name": "baidu",
- "data": {
- "vertex": "baidu",
- "detail": {
- "category": {
- "appName": "baidu",
- "isValid": 1,
- "appDescription": "Baidu is a Chinese search engine for websites, audio files and images. Baidu means \"\"One hundred degrees\"\" in English.",
- "appTechnology": "network-protocol",
- "appCategory": "general-internet",
- "updateTime": "2023-06-21 06:39:57",
- "knowledgeId": 12,
- "appLongname": "Baidu.com",
- "appCompanyCategory": "",
- "createTime": "2023-06-21 06:39:57",
- "appId": 548,
- "appCompany": "Baidu",
- "appRisk": 1,
- "appSubcategory": "internet-utility"
+ data: {
+ level: '2.5',
+ type: 'app',
+ name: 'baidu',
+ data: {
+ vertex: 'baidu',
+ detail: {
+ category: {
+ appName: 'baidu',
+ isValid: 1,
+ appDescription: 'Baidu is a Chinese search engine for websites, audio files and images. Baidu means ""One hundred degrees"" in English.',
+ appTechnology: 'network-protocol',
+ appCategory: 'general-internet',
+ updateTime: '2023-06-21 06:39:57',
+ knowledgeId: 12,
+ appLongname: 'Baidu.com',
+ appCompanyCategory: '',
+ createTime: '2023-06-21 06:39:57',
+ appId: 548,
+ appCompany: 'Baidu',
+ appRisk: 1,
+ appSubcategory: 'internet-utility'
}
}
}
@@ -1937,749 +1937,749 @@ export default {
}
]
},
- "type": "circle",
- "size": 66,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/app.svg",
- "width": 20,
- "height": 24
+ type: 'circle',
+ size: 66,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/app.svg',
+ width: 20,
+ height: 24
},
- "style": {
- "fill": "white",
- "stroke": "#A7B0B9",
- "lineWidth": 1
+ style: {
+ fill: 'white',
+ stroke: '#A7B0B9',
+ lineWidth: 1
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "edges": [
+ edges: [
{
- "id": "app-1-baidu",
- "source": "app-1",
- "target": "baidu",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'app-1-baidu',
+ source: 'app-1',
+ target: 'baidu',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
]
},
{
- "id": "116.178.71.35",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '116.178.71.35',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "116.178.71.35",
- "data": {
- "vertex": "116.178.71.35",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Xinjiang",
- "lngwgs": 87.555502,
- "city": "Urumqi City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 43.833288
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '116.178.71.35',
+ data: {
+ vertex: '116.178.71.35',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Xinjiang',
+ lngwgs: 87.555502,
+ city: 'Urumqi City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 43.833288
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172831,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172831,
+ asn: '4837'
}
}
}
}
},
{
- "id": "119.249.102.33",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '119.249.102.33',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "119.249.102.33",
- "data": {
- "vertex": "119.249.102.33",
- "detail": {
- "location": {
- "continent": "Asia",
- "owner": "China Unicom",
- "knowledgeId": 1,
- "country": "China",
- "province": "Hebei",
- "lngwgs": 115.481957,
- "city": "Baoding City",
- "isp": "China Unicom",
- "isValid": 1,
- "latwgs": 38.879992
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '119.249.102.33',
+ data: {
+ vertex: '119.249.102.33',
+ detail: {
+ location: {
+ continent: 'Asia',
+ owner: 'China Unicom',
+ knowledgeId: 1,
+ country: 'China',
+ province: 'Hebei',
+ lngwgs: 115.481957,
+ city: 'Baoding City',
+ isp: 'China Unicom',
+ isValid: 1,
+ latwgs: 38.879992
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172932,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172932,
+ asn: '4837'
}
}
}
}
},
{
- "id": "27.221.27.35",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/ip-colored.svg",
- "width": 20,
- "height": 18
+ id: '27.221.27.35',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/ip-colored.svg',
+ width: 20,
+ height: 18
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "ip",
- "name": "27.221.27.35",
- "data": {
- "vertex": "27.221.27.35",
- "detail": {
- "location": {
- "continent": "Europe",
- "owner": "Vodafone GmbH",
- "knowledgeId": 1,
- "country": "Germany",
- "province": "Rheinland-Pfalz",
- "lngwgs": 8.207885,
- "city": "Freinsheim",
- "isp": "Vodafone GmbH",
- "isValid": 1,
- "latwgs": 49.501895
+ data: {
+ level: '2.5',
+ type: 'ip',
+ name: '27.221.27.35',
+ data: {
+ vertex: '27.221.27.35',
+ detail: {
+ location: {
+ continent: 'Europe',
+ owner: 'Vodafone GmbH',
+ knowledgeId: 1,
+ country: 'Germany',
+ province: 'Rheinland-Pfalz',
+ lngwgs: 8.207885,
+ city: 'Freinsheim',
+ isp: 'Vodafone GmbH',
+ isValid: 1,
+ latwgs: 49.501895
},
- "asn": {
- "knowledgeId": 6,
- "organization": "CHINA169-BACKBONE CHINA UNICOM China169 Backbone",
- "isValid": 1,
- "id": 172121,
- "asn": "4837"
+ asn: {
+ knowledgeId: 6,
+ organization: 'CHINA169-BACKBONE CHINA UNICOM China169 Backbone',
+ isValid: 1,
+ id: 172121,
+ asn: '4837'
}
}
}
}
},
{
- "id": "imeres.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'imeres.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "imeres.baidu.com",
- "data": {
- "vertex": "imeres.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'imeres.baidu.com',
+ data: {
+ vertex: 'imeres.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "img0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'img0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "img0.baidu.com",
- "data": {
- "vertex": "img0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'img0.baidu.com',
+ data: {
+ vertex: 'img0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "img1.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'img1.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "img1.baidu.com",
- "data": {
- "vertex": "img1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'img1.baidu.com',
+ data: {
+ vertex: 'img1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "luimg.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'luimg.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "luimg.baidu.com",
- "data": {
- "vertex": "luimg.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'luimg.baidu.com',
+ data: {
+ vertex: 'luimg.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pics0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pics0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pics0.baidu.com",
- "data": {
- "vertex": "pics0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pics0.baidu.com',
+ data: {
+ vertex: 'pics0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pics1.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pics1.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pics1.baidu.com",
- "data": {
- "vertex": "pics1.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pics1.baidu.com',
+ data: {
+ vertex: 'pics1.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "pn.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'pn.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "pn.baidu.com",
- "data": {
- "vertex": "pn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'pn.baidu.com',
+ data: {
+ vertex: 'pn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "ss0.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'ss0.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "ss0.baidu.com",
- "data": {
- "vertex": "ss0.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'ss0.baidu.com',
+ data: {
+ vertex: 'ss0.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "wjz-cdn.baidu.com",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/domain-colored.svg",
- "width": 20,
- "height": 20
+ id: 'wjz-cdn.baidu.com',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/domain-colored.svg',
+ width: 20,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "domain",
- "name": "wjz-cdn.baidu.com",
- "data": {
- "vertex": "wjz-cdn.baidu.com",
- "detail": {
- "whois": null,
- "category": null
+ data: {
+ level: '2.5',
+ type: 'domain',
+ name: 'wjz-cdn.baidu.com',
+ data: {
+ vertex: 'wjz-cdn.baidu.com',
+ detail: {
+ whois: null,
+ category: null
}
}
}
},
{
- "id": "baidu",
- "type": "circle",
- "size": 28,
- "icon": {
- "show": true,
- "img": "http://localhost/images/entity-symbol2/app-colored.svg",
- "width": 17,
- "height": 20
+ id: 'baidu',
+ type: 'circle',
+ size: 28,
+ icon: {
+ show: true,
+ img: 'http://localhost/images/entity-symbol2/app-colored.svg',
+ width: 17,
+ height: 20
},
- "style": {
- "fill": "transparent",
- "stroke": "transparent",
- "lineWidth": 0
+ style: {
+ fill: 'transparent',
+ stroke: 'transparent',
+ lineWidth: 0
},
- "labelCfg": {
- "position": "bottom",
- "offset": 10,
- "style": {
- "fill": "#353636",
- "fontSize": 12
+ labelCfg: {
+ position: 'bottom',
+ offset: 10,
+ style: {
+ fill: '#353636',
+ fontSize: 12
}
},
- "data": {
- "level": "2.5",
- "type": "app",
- "name": "baidu",
- "data": {
- "vertex": "baidu",
- "detail": {
- "category": {
- "appName": "baidu",
- "isValid": 1,
- "appDescription": "Baidu is a Chinese search engine for websites, audio files and images. Baidu means \"\"One hundred degrees\"\" in English.",
- "appTechnology": "network-protocol",
- "appCategory": "general-internet",
- "updateTime": "2023-06-21 06:39:57",
- "knowledgeId": 12,
- "appLongname": "Baidu.com",
- "appCompanyCategory": "",
- "createTime": "2023-06-21 06:39:57",
- "appId": 548,
- "appCompany": "Baidu",
- "appRisk": 1,
- "appSubcategory": "internet-utility"
+ data: {
+ level: '2.5',
+ type: 'app',
+ name: 'baidu',
+ data: {
+ vertex: 'baidu',
+ detail: {
+ category: {
+ appName: 'baidu',
+ isValid: 1,
+ appDescription: 'Baidu is a Chinese search engine for websites, audio files and images. Baidu means ""One hundred degrees"" in English.',
+ appTechnology: 'network-protocol',
+ appCategory: 'general-internet',
+ updateTime: '2023-06-21 06:39:57',
+ knowledgeId: 12,
+ appLongname: 'Baidu.com',
+ appCompanyCategory: '',
+ createTime: '2023-06-21 06:39:57',
+ appId: 548,
+ appCompany: 'Baidu',
+ appRisk: 1,
+ appSubcategory: 'internet-utility'
}
}
}
}
}
],
- "edges": [
+ edges: [
{
- "id": "baidu.com-ip-1",
- "source": "baidu.com",
- "target": "ip-1",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'baidu.com-ip-1',
+ source: 'baidu.com',
+ target: 'ip-1',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "baidu.com-domain-1",
- "source": "baidu.com",
- "target": "domain-1",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'baidu.com-domain-1',
+ source: 'baidu.com',
+ target: 'domain-1',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "baidu.com-app-1",
- "source": "baidu.com",
- "target": "app-1",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'baidu.com-app-1',
+ source: 'baidu.com',
+ target: 'app-1',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "ip-1-116.178.71.35",
- "source": "ip-1",
- "target": "116.178.71.35",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-116.178.71.35',
+ source: 'ip-1',
+ target: '116.178.71.35',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "ip-1-119.249.102.33",
- "source": "ip-1",
- "target": "119.249.102.33",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-119.249.102.33',
+ source: 'ip-1',
+ target: '119.249.102.33',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "ip-1-27.221.27.35",
- "source": "ip-1",
- "target": "27.221.27.35",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'ip-1-27.221.27.35',
+ source: 'ip-1',
+ target: '27.221.27.35',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-imeres.baidu.com",
- "source": "domain-1",
- "target": "imeres.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-imeres.baidu.com',
+ source: 'domain-1',
+ target: 'imeres.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-img0.baidu.com",
- "source": "domain-1",
- "target": "img0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-img0.baidu.com',
+ source: 'domain-1',
+ target: 'img0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-img1.baidu.com",
- "source": "domain-1",
- "target": "img1.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-img1.baidu.com',
+ source: 'domain-1',
+ target: 'img1.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-luimg.baidu.com",
- "source": "domain-1",
- "target": "luimg.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-luimg.baidu.com',
+ source: 'domain-1',
+ target: 'luimg.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pics0.baidu.com",
- "source": "domain-1",
- "target": "pics0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pics0.baidu.com',
+ source: 'domain-1',
+ target: 'pics0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pics1.baidu.com",
- "source": "domain-1",
- "target": "pics1.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pics1.baidu.com',
+ source: 'domain-1',
+ target: 'pics1.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-pn.baidu.com",
- "source": "domain-1",
- "target": "pn.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-pn.baidu.com',
+ source: 'domain-1',
+ target: 'pn.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-ss0.baidu.com",
- "source": "domain-1",
- "target": "ss0.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-ss0.baidu.com',
+ source: 'domain-1',
+ target: 'ss0.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "domain-1-wjz-cdn.baidu.com",
- "source": "domain-1",
- "target": "wjz-cdn.baidu.com",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'domain-1-wjz-cdn.baidu.com',
+ source: 'domain-1',
+ target: 'wjz-cdn.baidu.com',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
},
{
- "id": "app-1-baidu",
- "source": "app-1",
- "target": "baidu",
- "style": {
- "stroke": "#BEBEBE",
- "endArrow": {
- "path": "M 0,0 L 5,-2.5 L 5,2.5 Z"
+ id: 'app-1-baidu',
+ source: 'app-1',
+ target: 'baidu',
+ style: {
+ stroke: '#BEBEBE',
+ endArrow: {
+ path: 'M 0,0 L 5,-2.5 L 5,2.5 Z'
}
}
}
diff --git a/src/views/report/Report.vue b/src/views/report/Report.vue
index aa64f0bc..5b021852 100644
--- a/src/views/report/Report.vue
+++ b/src/views/report/Report.vue
@@ -278,7 +278,7 @@ export default {
}
})
this.pageObj.total = response.data.data.total
- this.isNoData = !this.tableData || this.tableData.length === 0;
+ this.isNoData = !this.tableData || this.tableData.length === 0
})
// TODO 回到顶部
} else {