diff --git a/src/assets/css/components/views/entityExplorer/entity-detail.scss b/src/assets/css/components/views/entityExplorer/entity-detail.scss index 0b3127ee..17170abc 100644 --- a/src/assets/css/components/views/entityExplorer/entity-detail.scss +++ b/src/assets/css/components/views/entityExplorer/entity-detail.scss @@ -25,7 +25,7 @@ background-color: #F3F7FA; i { - font-size: 22px; + font-size: 26px; color: #4E84B4; } } diff --git a/src/assets/css/components/views/entityExplorer/entityList/detail-overview.scss b/src/assets/css/components/views/entityExplorer/entityList/detail-overview.scss index e2d2bb9f..a83b1cc7 100644 --- a/src/assets/css/components/views/entityExplorer/entityList/detail-overview.scss +++ b/src/assets/css/components/views/entityExplorer/entityList/detail-overview.scss @@ -9,7 +9,7 @@ right: 50px; top: 0; width: 550px; - height: 350px; + height: 320px; &.overview-map--ip { height: 210px; diff --git a/src/assets/css/components/views/entityExplorer/entityList/row.scss b/src/assets/css/components/views/entityExplorer/entityList/row.scss index 80c6298c..5cf90a84 100644 --- a/src/assets/css/components/views/entityExplorer/entityList/row.scss +++ b/src/assets/css/components/views/entityExplorer/entityList/row.scss @@ -51,7 +51,7 @@ background-color: #F3F7FA; i { - font-size: 22px; + font-size: 26px; color: #4E84B4; } } diff --git a/src/store/modules/panel.js b/src/store/modules/panel.js index 243d5ec6..c2f4d8ce 100644 --- a/src/store/modules/panel.js +++ b/src/store/modules/panel.js @@ -14,7 +14,8 @@ const panel = { chartLastPosition: { x: 0, y: 0 - } + }, + chartList:[] }, mutations: { setShowRightBox (state, flag) { @@ -55,6 +56,12 @@ const panel = { }, setChartListId (state, id) { state.chartListId = id + }, + setChartList (state, chart) { + state.chartList.push(chart) + }, + cleanChartList (state) { + state.chartList = [] } }, getters: { @@ -93,6 +100,9 @@ const panel = { }, getChartListId (state, id) { return state.chartListId + }, + getChartList (state) { + return state.chartList } }, actions: { diff --git a/src/views/charts/PanelChart.vue b/src/views/charts/PanelChart.vue index 649af453..69807c7a 100644 --- a/src/views/charts/PanelChart.vue +++ b/src/views/charts/PanelChart.vue @@ -379,6 +379,7 @@ export default { mounted () { this.showLoading(true) this.getChartData() + this.$store.commit('cleanChartList') }, setup (props) { const dateRangeValue = 60 diff --git a/src/views/charts/charts/ChartDomainRecursiveResolve.vue b/src/views/charts/charts/ChartDomainRecursiveResolve.vue index 8dc4b962..6e415b51 100644 --- a/src/views/charts/charts/ChartDomainRecursiveResolve.vue +++ b/src/views/charts/charts/ChartDomainRecursiveResolve.vue @@ -1,5 +1,5 @@ - {{linuxLineSymbolConvert}} + {{linuxLineSymbolConvert}}