CN-333 feat : Dashboard--dns 实时告警信息图表开发 以及CN-332样式修改

This commit is contained in:
zhangxiaolong
2022-03-07 09:30:17 +08:00
parent 6e33638715
commit ef1686ce70
15 changed files with 672 additions and 200 deletions

View File

@@ -16,6 +16,7 @@
:order-pie-table="orderPieTable"
@loadMore="loadMore"
@refresh="refresh"
@tabHandleClick="tabHandleClick"
@groupShow="groupShow"
@showFullscreen="showFullscreen"
@tableChange="tableChange"
@@ -37,7 +38,9 @@
:table="table"
:is-fullscreen="isFullscreen"
:order-pie-table="orderPieTable"
@getChartData="getChartData"
@showLoading="showLoading"
:tabHandleClickType="tabHandleClickType"
></chart>
</div>
</template>
@@ -153,7 +156,8 @@ export default {
tableColumns: [], // table字段
tableData: [], // table的所有数据
currentPageData: [] // table当前页的数据
}
},
tabHandleClickType:''
}
},
computed: {
@@ -290,6 +294,9 @@ export default {
this.emitter.emit('chart-pageNo')
this.getChartData(null, {}, true, chartTimeFilter)
},
tabHandleClick(value){
this.tabHandleClickType = value
},
showFullscreen (show) {
this.$emit('showFullscreen', show, this.chartInfo)
},