From 07958c244e49e561718b97cac6a7168eeb61b5e7 Mon Sep 17 00:00:00 2001 From: ZZJ <zzjdsg2300@163.com> Date: 星期三, 20 十月 2021 10:32:23 +0800 Subject: [PATCH] 系统监控bug修复 --- src/pages/systemMonitor/index/App.vue | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/pages/systemMonitor/index/App.vue b/src/pages/systemMonitor/index/App.vue index 5b60a1f..a15face 100644 --- a/src/pages/systemMonitor/index/App.vue +++ b/src/pages/systemMonitor/index/App.vue @@ -50,8 +50,8 @@ class="tableBox" > <el-table-column label="鍚嶇О" width="231"> - <template slot-scope="scope"> - <span class="iconfont icon"></span> + <template slot-scope="scope"> + <span class="iconfont icon"></span> <span>{{ scope.row.desc }} </span> </template> </el-table-column> @@ -287,8 +287,10 @@ > <el-table-column label="鍚嶇О" show-overflow-tooltip> <template slot-scope="scope"> + <div class="name_container"> <span class="iconfont icon"></span> <span>{{ scope.row.name }}</span> + </div> </template> </el-table-column> <el-table-column label="鐘舵��" prop="status"> @@ -722,6 +724,12 @@ box-sizing: border-box; background-color: #fff; height: 100%; + + .name_container { + text-align: left; + margin-left: 38%; + } + .el-table th.el-table__cell.is-leaf, .el-table td.el-table__cell { border-bottom: none; -- Gitblit v1.8.0