Bootstrap

avue-crud 表格根据返回数据表格行变色

avue-crud 表格根据返回数据表格行变色

代码

<avue-crud  v-loading="loading" :data="orderlist" :option="option" ref="table" @refresh-change="getorder" 
@row-dblclick="handleRowDBLClick" :row-class-	name="rowStyle"  style="margin-top:-17px;" > </avue-crud>

methods:{
	 rowStyle({
        row,
        rowIndex
      }) {
        if (row.retustatus == '1') {
          return 'warning-row'
        }
      },

}
     <style>
     	 .warning-row {
			    background: #f56f74 !important;
			  }
     </style>
;