Vue 修改 table 表格颜色

2023-08-14  本文已影响0人  Rinaloving

代码

   // 单元格背景色
    cellStyle({ row, column, rowIndex, columnIndex }) {
      let cellStyle;
      switch (row.verifyStatus) {
        case 3:
          cellStyle = 'color:#000000; background-color: #f1552a';
          break;
        default:
          cellStyle = '';
      }
      return cellStyle
    },
QQ截图20230815170030.png
上一篇 下一篇

猜你喜欢

热点阅读