ElementUi中table组件使用row-class-name修改指定行

ElementUi中table组件使用row-class-name修改指定行

使用方法

//我这里使用的rowName这个方法名
:row-class-name="rowName" 
 

 

 
  
methods: {
  rowName({row, column, rowIndex, columnIndex}) {
    let day = this.getNumberOfDays(row.createTime, new Date())
    //时间差大于等于7天改变颜色
    if (day>=7){
      return 'rowName'
    }
  },

  //获得天数
  getNumberOfDays(startDate,endDate){
     //startDate:开始日期,endDate结束日期
     var a1 = Date.parse(new Date(startDate));
     var a2 = Date.parse(new Date(endDate));
     var day = parseInt((a2-a1)/ (1000 * 60 * 60 * 24));//核心:时间戳相减,然后除以天数
     return day
  }

}

你可能感兴趣的:(elementui,前端,javascript)