vue之el-table某⼀列设置样式⽅法⼀
在el-table设置属性cell-style⽅法
<el-table
:cell->
.........
</el-table>
在method中设置
setRowStyle(row, column, rowIndex, columnIndex){
if(row.status==="1"){
return'color: green'
}else{
return'color: red'
}
}
⽅法⼆
<el-table-column prop="status" label="状态">
<template scope="scope">
<span v-if="w.status==='1'" >成功</span>
<span v-else-if="w.status==='2'">失败</span>
table设置内边框
<span v-else >未知</span>
</template>
</el-table-column>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。