这里是将数据里name=部门达标情况的设置背景颜色为灰色

   <el-table :data="tableList" style="width: 100%;font-size:14px;color: #101010;" 
 :row-class-name="tableRowClassName"></el-table>
   //指定行颜色
    tableRowClassName: function({ row, rowIndex }) {
      console.log(row, 'row');
      if (row.name == '部门达标情况') {
        return 'warm-row';
      }
    },

 这里样式很重要,没有scoped

<style lang="scss">
.warm-row {
  background-color: #f9f9f9 !important;
}
</style>

 

GitHub 加速计划 / eleme / element
10
1
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:4 个月前 )
c345bb45 8 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 8 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐