From d27fbd63d7840787d7f3ca5333b6e24dc3a860d4 Mon Sep 17 00:00:00 2001 From: mh-two-thousand-and-two <17391232786@163.com> Date: 星期五, 29 三月 2024 18:43:30 +0800 Subject: [PATCH] 第二次提交 --- components/table1/table1.vue | 24 +++++++++++++++++++----- 1 files changed, 19 insertions(+), 5 deletions(-) diff --git a/components/table1/table1.vue b/components/table1/table1.vue index 4f3549a..ac388df 100644 --- a/components/table1/table1.vue +++ b/components/table1/table1.vue @@ -1,8 +1,8 @@ <template> <div> - <el-table :max-height="height" :data="data" border> + <el-table :max-height="height" :data="data" > <el-table-column min-width="110" :sort-method="sortAge" v-for="column in columns" :key="column.prop" :label="column.label" header-align="center"> - <template slot-scope="scope"> + <template slot-scope="scope" class="font-family"> <template v-if="column.type === 'image'"> <el-image :src="scope.row[column.prop]" alt="鍔犺浇澶辫触"></el-image> </template> @@ -87,15 +87,29 @@ height: 70px; } /* 琛ㄥご */ +::v-deep .el-table__header{ + margin-bottom: .02rem; +} ::v-deep .el-table__header th { - background-color: #5879a4; + height: .3rem; + line-height: .3rem; + font-size: .14rem; + background-color: #597AA5; color: white; /* 琛ㄥご鏂囧瓧棰滆壊涓虹櫧鑹诧紝澧炲姞瀵规瘮搴� */ + margin-bottom: .02rem !important; } /* 琛ㄦ牸 */ ::v-deep .el-table__body td { - background-color: #ebf3fe; - color: #000; + background-color:#DDE8F6; + height: .3rem; + line-height: .3rem; + font-size: .14rem; + color: #2C2C2C !important; + border-bottom: .02rem solid #fff; } +/* ::v-deep .el-table__body { + border-bottom: .02rem solid #fff !important; +} */ ::v-deep .el-table .el-table__cell{ font-size: 9px; padding: 0; -- Gitblit v1.9.1