当前位置: 首页 > article >正文

elementui 单元格添加样式的两种方法

方法一 

<el-table-column fixed prop="name" label="姓名" width="120">
            <<template scope="scope">
              <span :class="{red:scope.row.color==1,yell:scope.row.color==2,green:scope.row.color==3}">{{scope.row.name}}</span>
                        </template>
 
             </el-table-column> 

方法二 

el-table标签上添加:cell-class-name="classmeth"。

<el-table :data="tableData3" height="250" border style="width: 100%" :cell-class-name="classmeth">


                    classmeth({
                        row,
                        column,
                        rowIndex,
                        columnIndex
                    }) {

                        // console.log(row, column, rowIndex, columnIndex)
                        if (row.color === 1 && columnIndex == 1) {
                            return 'red'
                        }
                    },

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title></title>
    <!-- <script src="/utility/lzmain.js"></script>
    <script src="/utility/lzmain-form.js"></script> -->
    <!-- 引入ele -->
    <link rel="stylesheet" href="../js/vue/index.css">


    <style>
        /*滚动条的宽度划过时变大*/
        /*#region************浏览器默认滚动条通用google滚动条*/
        
         ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.01);
        }
        
         ::-webkit-scrollbar-track {
            -webkit-box-shadow: none;
            border-radius: 10px;
            background-color: rgba(0, 0, 0, 0);
        }
        
         ::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        *::-webkit-scrollbar:hover {
            transition: all 0.25s ease 0s, width 0.1s ease 0.15s, height 0.1s ease 0.15s;
        }
        
        *:focus::-webkit-scrollbar-thumb,
        *:hover::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.25);
            -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        }
        /* 表头样式 */
        
        .has-gutter .cell {
            font-weight: 600;
        }
        
        .el-table th.el-table__cell>.cell {
            color: #555;
        }
        /* 字体颜色 */
        
        .yell {
            color: yellow;
        }
        
        .green {
            color: green;
        }
        
        .red {
            color: red;
        }
    </style>

    <body>
        <div id="data">
            <div class="table-div">
             
                <el-table :data="tableData3" height="250" border style="width: 100%" :cell-class-name="classmeth">
                    <el-table-column fixed prop="date" label="日期" width="150">
                    </el-table-column>
                    <el-table-column fixed prop="name" label="姓名" width="120">
                        <!--  方法一-->
                        <!-- <template scope="scope">
                            <span :class="{red:scope.row.color==1,yell:scope.row.color==2,green:scope.row.color==3}">{{scope.row.name}}</span>
                        </template> -->
                    </el-table-column>
                    <el-table-column prop="province" label="省份" width="120">
                    </el-table-column>
                    <el-table-column prop="city" label="市区" width="120">
                    </el-table-column>
                    <el-table-column prop="address" label="地址" width="300">
                    </el-table-column>
                    <el-table-column prop="zip" label="邮编" width="120">
                    </el-table-column>
                </el-table>
            </div>
            <div class="model-div  el-popover">
                111
            </div>
        </div>
        <script src="../js/vue/vue.js"></script>
        <!-- 放在最下面 -->
        <script src="../js/vue/ele-index.js"></script>
        <script>
            new Vue({
                el: '#data',
                data() {
                    return {

                        tableData3: [{
                            color: 1,
                            date: '2016-05-03',
                            name: '王小虎1',
                            province: '上海',
                            city: '普陀区',
                            address: '上海市普陀区金沙江路 1518 弄',
                            zip: 200333,
                        }, {
                            color: 1,
                            date: '2016-05-02',
                            name: '王小虎3',
                            province: '上海',
                            city: '普陀区',
                            address: '上海市普陀区金沙江路 1518 弄',
                            zip: 200333
                        }, {
                            color: 3,
                            date: '2016-05-04',
                            name: '王小虎4',
                            province: '上海',
                            city: '普陀区',
                            address: '上海市普陀区金沙江路 1518 弄',
                            zip: 200333
                        }, {
                            color: 1,
                            date: '2016-05-01',
                            name: '王小虎5',
                            province: '上海',
                            city: '普陀区',
                            address: '上海市普陀区金沙江路 1518 弄',
                            zip: 200333
                        }, {
                            color: 3,
                            date: '2016-05-08',
                            name: '王小虎',
                            province: '上海',
                            city: '普陀区',
                            address: '上海市普陀区金沙江路 1518 弄',
                            zip: 200333
                        }, {
                            color: 2,
                            date: '2016-05-06',
                            name: '王小虎',
                            province: '上海',
                            city: '普陀区',
                            address: '上海市普陀区金沙江路 1518 弄',
                            zip: 200333
                        }, {
                            color: 2,
                            date: '2016-05-07',
                            name: '王小虎',
                            province: '上海',
                            city: '普陀区',
                            address: '上海市普陀区金沙江路 1518 弄',
                            zip: 200333
                        }]
                    }
                },
                methods: {
                    //方法2
                    classmeth({
                        row,
                        column,
                        rowIndex,
                        columnIndex
                    }) {

                        // console.log(row, column, rowIndex, columnIndex)
                        if (row.color === 1 && columnIndex == 1) {
                            return 'red'
                        }
                    },
                },
            })
        </script>
    </body>

</html>


http://www.kler.cn/a/305296.html

相关文章:

  • 「Mac玩转仓颉内测版7」入门篇7 - Cangjie控制结构(下)
  • 开源vs闭源:你更看好哪一方?
  • 【JAVA】Java基础—面向对象编程:封装—保护类的内部数据
  • 解决:WSL2可视化opencv和pyqt冲突:QObject::moveToThread
  • JavaEE进阶----SpringMVC(三)---响应的获取
  • 使用HTML、CSS和JavaScript创建动态圣诞树
  • Web 创建设计
  • RabbitMQ(高阶使用)延时任务
  • 19. 删除链表的倒数第 N 个结点【 力扣(LeetCode) 】
  • 定时任务调用OpenFegin无token认证异常
  • LAMP+WordPress
  • 服务器运维面试题4
  • 【SpringBoot】调度和执行定时任务--Quartz(超详细)
  • Ubuntu 22.04.5 LTS 发布下载 - 现代化的企业与开源 Linux
  • 力扣移除元素(力扣题26)(插空找空位java)
  • Linux上使用touch修改文件时间属性的限制
  • 如何打造智能、高效、安全的智慧实验室
  • 【React源码解析】深入理解react时间切片和fiber架构
  • C++——智能指针
  • CH1-1 引论
  • Rust:Result 和 Error
  • 职场 Death Note
  • Uniapp + Vue3 + Vite +Uview + Pinia 实现提交订单以及支付功能(最新附源码保姆级)
  • MATLAB中who的用法
  • flink增量检查点启动恢复的时间是很久的,业务上不能接受,怎么处理
  • MySQL索引-聚簇索引和非聚簇索引