• el-table 列背景色渐变


    最初的想法是,给每一行添加背景色,逐行递减透明度,发现结果比较突兀,效果如下:
    在这里插入图片描述

    如果有需要这种样式的,代码如下:

    <template>
      <div>
        <el-table
          :data="tableData"
          :header-cell-style="headerCellStyle"
          :cell-style="cellStyle"
          style="width: 100%">
          <el-table-column
            prop="date"
            label="日期"
            width="180">
          el-table-column>
          <el-table-column
            prop="name"
            label="姓名">
          el-table-column>
          <el-table-column
            prop="gender"
            label="性别">
          el-table-column>
          <el-table-column
            prop="mobile"
            label="电话">
          el-table-column>
          <el-table-column
            prop="address"
            label="地址">
          el-table-column>
        el-table>
      div>
    template>
    
    <script>
    
    export default {
      data () {
        return {
          tableData: [{
            date: '2016-05-02',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1518 弄'
          }, {
            date: '2016-05-04',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1517 弄'
          }, {
            date: '2016-05-01',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1519 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }],
          colors: [
            '247, 162, 20',
            '254, 230, 100',
            '153, 221, 226',
            '211, 110, 197',
            '150, 227, 161',
            '238, 206, 112',
            '116, 220, 187',
            '116, 148, 218',
            '216, 117, 146',
            '245, 196, 156'
          ]
        }
      },
      methods: {
        headerCellStyle ({ row, column, rowIndex, columnIndex }) {
          const { colors } = this
          const styleObj = {
            backgroundColor: `rgb(${colors[columnIndex]})`,
            color: '#333'
          }
          return styleObj
        },
        cellStyle ({ row, column, rowIndex, columnIndex }) {
          const { tableData, colors } = this
          const dataLength = tableData.length // 数据长度
          const gradientNum = dataLength + 1 // 渐变数量加1
          const startOpacity = 0.7 // 起始透明度
          const interval = startOpacity / gradientNum // 计算每行的渐变间隔
          const opacity = startOpacity - rowIndex * interval
          const styleObj = {
            backgroundColor: `rgba(${colors[columnIndex]}, ${opacity})`,
            border: 'none'
          }
          return styleObj
        }
      }
    }
    script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137

    思考了一下,如果只能给每行设置背景色,又要看起来向整体渐变,则需要每行设置渐变,使每行有衔接效果,即1行:0.6 ~ 0.5,2行:0.5 ~ 0.4 以此类推。
    在这里插入图片描述
    计算方法透明度 / 通过总数据量(行数)= 每行透明间隔 再每行递减即可。

    最终代码

    <template>
      <div>
        <el-table
          :data="tableData"
          :header-cell-style="headerCellStyle"
          :cell-style="cellStyle"
          style="width: 100%">
          <el-table-column
            prop="date"
            label="日期"
            width="180">
          el-table-column>
          <el-table-column
            prop="name"
            label="姓名">
          el-table-column>
          <el-table-column
            prop="gender"
            label="性别">
          el-table-column>
          <el-table-column
            prop="mobile"
            label="电话">
          el-table-column>
          <el-table-column
            prop="address"
            label="地址">
          el-table-column>
        el-table>
      div>
    template>
    
    <script>
    
    export default {
      data () {
        return {
          tableData: [{
            date: '2016-05-02',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1518 弄'
          }, {
            date: '2016-05-04',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1517 弄'
          }, {
            date: '2016-05-01',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1519 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }, {
            date: '2016-05-03',
            name: '王小虎',
            gender: '男',
            mobile: '17688888888',
            address: '上海市普陀区金沙江路 1516 弄'
          }],
          colors: [
            '247, 162, 20',
            '254, 230, 100',
            '153, 221, 226',
            '211, 110, 197',
            '150, 227, 161',
            '238, 206, 112',
            '116, 220, 187',
            '116, 148, 218',
            '216, 117, 146',
            '245, 196, 156'
          ]
        }
      },
      methods: {
        headerCellStyle ({ row, column, rowIndex, columnIndex }) {
          const { colors } = this
          const styleObj = {
            backgroundColor: `rgb(${colors[columnIndex]})`,
            color: '#333'
          }
          return styleObj
        },
        cellStyle ({ row, column, rowIndex, columnIndex }) {
          const { tableData, colors } = this
          const dataLength = tableData.length // 数据长度
          const gradientNum = dataLength + 1 // 渐变数量加1
          const startOpacity = 0.7 // 起始透明度
          const interval = startOpacity / gradientNum // 计算每行的渐变间隔
          const opacity1 = startOpacity - rowIndex * interval
          const opacity2 = startOpacity - interval - rowIndex * interval
          const styleObj = {
            backgroundImage: `linear-gradient(to bottom, rgba(${colors[columnIndex]}, ${opacity1}), rgba(${colors[columnIndex]}, ${opacity2}))`,
            border: 'none'
          }
          return styleObj
        }
      }
    }
    script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138

    在这里插入图片描述

  • 相关阅读:
    华为机试HJ9
    Docker简介
    GraphQL入门与开源的GraphQL引擎Hasura体验
    acwing算法基础之数学知识--高斯消元法求解线性方程组
    SWAT-MODFLOW地表水与地下水耦合教程
    Python数据挖掘—爬虫基础
    RabbitMQ教程
    霸占GitHub热榜的《Spring Cloud Alibaba源码笔记》果然“威力极大”
    GPG加密解密
    【lombok原理】无聊的周末一个人手写一个lombok
  • 原文地址:https://blog.csdn.net/z291493823/article/details/132897299