欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue+elementUI中表格高亮或字体颜色改变

程序员文章站 2022-06-07 22:31:22
...

重点的代码:

:row-style="setRowStyle"这个属性就是在table标签绑定的

:row-style="setRowStyle"

setRowStyle(row) {
          if (row.row.isPart == true) {
              return 'color:blue;'
          }
        },

具体代码:

hmtl

<el-table width="100%" :data="gridData" border fit highlight-current-row :header-cell-style="{background:'#199ED8'}" :row-style="setRowStyle">
  <el-table-column label="序号" type="index"></el-table-column>
 </el-table>

js中就是方法的调用就好了

setRowStyle(row) {
          if (row.row.isPart == true) {
              return 'color:blue;'
          }
        },
相关标签: vue+element