From e6ac09332e92782446152e1ba0e031196272edd1 Mon Sep 17 00:00:00 2001 From: zhangshuaibao <15731629597@163.com> Date: 星期三, 14 四月 2021 16:19:02 +0800 Subject: [PATCH] Merge branch 'develop' of http://xearth.cn:6600/r/wuyushui/SewerAndRainNetwork into develop --- src/components/BaseNav/PublicBounced/common/PublicTable.vue | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/components/BaseNav/PublicBounced/common/PublicTable.vue b/src/components/BaseNav/PublicBounced/common/PublicTable.vue index 4b610e3..1515187 100644 --- a/src/components/BaseNav/PublicBounced/common/PublicTable.vue +++ b/src/components/BaseNav/PublicBounced/common/PublicTable.vue @@ -13,7 +13,7 @@ <span></span> <span></span> <div class="main-table"> - <el-table :data="listData" style="width: 100%" height="255px" :row-class-name="tableRowClassName"> + <el-table :data="listData" style="width: 100%" height="325px" :row-class-name="tableRowClassName"> <el-table-column v-for="(item, index) in listLabel" :key="index" :prop="item.prop" :label="item.label" :show-overflow-tooltip="true"></el-table-column> </el-table> @@ -62,7 +62,7 @@ }, mounted () { this.$nextTick(() => { - this.listData.push(this.displayContentTable[0], {}, {}) + this.listData.push(this.displayContentTable[0], {}, {}, {}, {}, {}, {}) }) }, methods: { @@ -100,8 +100,12 @@ // //border: 1px red solid; // } //} -/deep/ .el-table td, .el-table th.is-leaf { - border-bottom: none; +/deep/ .el-table td { + border-bottom: none !important; +} + +/deep/ .el-table th.is-leaf { + border-bottom: none !important; } /deep/ .el-table td { @@ -109,6 +113,10 @@ line-height: 45px !important; } +/deep/ .el-table tbody tr:hover > td { + background: none !important +} + .main { position: relative; background: rgba(33, 41, 69, 0.9); -- Gitblit v1.8.0