使用vxe-table修改特定的某一列的样式

1、在vxe-table上绑定:cell-style="cellStyle"
 

 
    const cellStyle = ({ row, column, rowIndex, columnIndex }) => {
      if (column.property) {
        const str = column.property
        const firstChar = str.slice(0, 3)
        if (firstChar == 'myd') {
          return {
          color: '#CC8B04',
          cursor:'pointer'
        }
        }
      }
    }

你可能感兴趣的:(java,前端,服务器)