首页和资源监控

This commit is contained in:
康冉冉
2025-08-29 17:21:52 +08:00
parent fd38d86bf1
commit 5c5f144e60
8 changed files with 458 additions and 243 deletions

View File

@@ -11,7 +11,7 @@
</el-row>
<!-- 表格数据 -->
<el-table v-loading="loading" :data="tableList" ref="selChangeList" @selection-change="handleSelectionChange">
<el-table-column v-if="!config.colHiddenCheck" type="selection" width="55" align="center" />
<el-table-column v-if="!config && config.colHiddenCheck" type="selection" width="55" align="center" />
<template v-for="(column, key, index) of columns">
<el-table-column :label="column.label" :key="key" :prop="key" :width="column.width" min-width="100px" v-if="column && column.visible" align="center" :show-overflow-tooltip="true">
<!-- 插槽 自定义列表表头数据格式 -->
@@ -72,7 +72,9 @@
},
config: {
type: Object,
default: () => {}
default: () => ({
colHiddenCheck: false
})
}
},
data() {