赞
踩
工作中有用到对这一块样式的自定义,记录一下,仅供参考!
目录
核心代码:
<el-table :data="tableData" :header-cell-style="{ background: '#FF69B4 !important' ,color:'#ededed !important'}" style="width: 100%">
核心代码:
<el-table :data="tableData" :header-cell-style="rowClass" style="width: 100%">
- methods: {
- rowClass({row,column, rowIndex, columnIndex }) {
- if (rowIndex === 0) {
- if(columnIndex===0||columnIndex===1){
- return {background:'#98ff72 !important',color:'#ededed !important'};//不用这种写法不生效
- }else{
- return {background:'yellow !important'};
- }
- }
- return null;
- },
- }
由于上面对于字体颜色处理没生效 ,要想字体颜色也自定义,需要加入样式如下:
- <style scoped>
- /*表格的表头颜色 */
- /deep/ .el-table__header-wrapper .cell {
- color: red;
- font-size: x-large;
- font-weight: bold;
- }
-
-
- </style>
核心代码:
:cell-style="{ background: '#AEFFE9 !important' ,color:'#ededed !important'}"
<el-table :data="tableData" :cell-style="{ background: '#AEFFE9 !important' ,color:'#ededed !important'}" :header-cell-style="{ background: '#FF69B4 !important' ,color:'#ededed !important'}" style="width: 100%">
核心代码:
- <el-table :data="tableData" :cell-style="cellStyle" :header-cell-style="{ background: '#FF69B4 !important' ,color:'#ededed !important'}" style="width: 100%">
-
-
-
-
-
- methods: {
- cellStyle({row, column, rowIndex, columnIndex}) {
- if (column.property === 'name') {
- switch (row.name) {
- case '张三':
- return {background: 'pink', color: '#FFFFFF'};//color未生效
- break;
- case '李四':
- return {background: '#98ff72', color: '#FFFFFF'};
- break;
- }
- }
- },
- }

上面方式对字体颜色不生效,可以用下面的方式处理 或者 某列加<span>对字体样式进行设置,
可以修改背景色、字体颜色、字体加粗、字号大小等,视需求而定。
核心代码:
- <el-table-column prop="address" label="地址">
- <template slot-scope="scope">
- <div :style="{ background:'#4CFCFF !important',color: scope.row.address ? 'red' : 'black' ,fontWeight:'bold', fontFamily:'华文行楷'}">
- {{ scope.row.address }}
- </div>
- </template>
- </el-table-column>
原始效果:
设置后效果:
核心代码:利用插槽对单元格提示进行改造
- <el-table-column prop="address" label="地址" show-overflow-tooltip>
- <!-- <template slot-scope="scope">
- <div :style="{ background:'#4CFCFF !important',color: scope.row.address ? 'red' : 'black' ,fontWeight:'bold', fontFamily:'华文行楷'}">
- {{ scope.row.address }}
- </div>
- </template>-->
-
- <template slot-scope="scope">
- <el-tooltip class="item" effect="dark" placement="top">
- <template slot="content">
- <textarea style="width:300px;height: 120px;font-size: 12px;background-color: #303133;color: white">{{ scope.row.address }}</textarea>
- </template>
- <span style="font-size: large">
- <div :style="{ background:'#4CFCFF !important',color: scope.row.address ? 'red' : 'black' ,fontWeight:'bold', fontFamily:'华文行楷'}">
- {{scope.row.address.length>50?scope.row.address.substr(0,50)+'...':scope.row.address}}
- </div>
- </span>
- </el-tooltip>
- </template>
- </el-table-column>

设置弹框背景色等属性:
以上罗列了各种情况,实际工作中,这种需要特殊处理的场景应该不多,根据需求使用不同的方式进行处理。
参考了下面的文章,但是其中对字体颜色的处理不生效,于是,加入自己的处理方式。
参考博文:https://blog.csdn.net/Dax1_/article/details/119739781
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。