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

@@ -13,9 +13,16 @@
let columns = ref<TableColumnType[]>([]);
interface PageData {
// 图表 表格数据
graphTableList: any[];
// 图表 表格表头
graphTableColumns: any[];
// 图表 图表数据
graphGraphList: any[];
// 分析 表格数据
analysisTableList: any[];
// 分析 图表数据
analysisGraphList: any[];
}
const pageData = inject<PageData>('pageData');