1. 监控中心 - 能耗监测 - 分析 表格 前端页面

2. 监控中心 - 能耗监测 - 分析 图表 前台页面
This commit is contained in:
fks-yangshouda
2024-07-11 17:29:23 +08:00
parent 4dea1ff14d
commit 37b877b220
8 changed files with 362 additions and 169 deletions

View File

@@ -23,6 +23,10 @@
<graph-graph ref="graphRef" v-if="isGraph" />
<environment-table ref="tableRef" v-else />
</div>
<div v-else style="height: 90%">
<analysis-graph ref="graphRef" v-if="isGraph" />
<analysis-table ref="analysisTableRef" v-else />
</div>
</div>
</a-col>
</a-row>
@@ -33,12 +37,15 @@
import tree from './tree/index.vue';
import graphGraph from './graphGraph/index.vue';
import environmentTable from './graphTable/index.vue';
import analysisTable from './analysisTable/index.vue';
import analysisGraph from './analysisGraph/index.vue';
const iconName = ref('biaoge');
const treeRef = ref();
const graphRef = ref();
const tableRef = ref();
const analysisTableRef = ref();
let isGraph = ref(true);
const activeKey = ref('1');