diff --git a/src/assets/css/components/views/charts2/graphRightListBlock.scss b/src/assets/css/components/views/charts2/graphRightListBlock.scss index 5bc94c68..c6955467 100644 --- a/src/assets/css/components/views/charts2/graphRightListBlock.scss +++ b/src/assets/css/components/views/charts2/graphRightListBlock.scss @@ -40,11 +40,10 @@ $font-size: 12px; margin-bottom: 24px; .graph-list-expand-btn { - width: 90px; height: 28px; line-height: 28px; background: #38ACD2; - border-radius: 4px; + border-radius: 3px; font-size: 12px; color: #FFFFFF; display: flex; @@ -52,8 +51,9 @@ $font-size: 12px; justify-content: center; font-family: NotoSansHans-Medium; font-weight: 500; - padding: 10px 0; + padding: 14px 10px; cursor: pointer; + border: 1px solid rgba(46,136,166,0.85); i { font-size: 16px; diff --git a/src/views/entityExplorer/entityGraphDetail/IpList.vue b/src/views/entityExplorer/entityGraphDetail/IpList.vue index 71243a87..3f83e348 100644 --- a/src/views/entityExplorer/entityGraphDetail/IpList.vue +++ b/src/views/entityExplorer/entityGraphDetail/IpList.vue @@ -15,16 +15,10 @@
-
- +
+ {{ $t('entity.graph.continueToExpand') }}
- - - - - -
@@ -92,6 +86,10 @@ export default { onMouseenter (val) { // 鼠标移动过graph列表名称时,graph图的分支图形会变大一点 this.$emit('mouseenter', val) + }, + expandList () { + // 继续拓展ip列表,传递信息,调用接口 + // this.$emit('expandList') } } }