在使用element-ui的表格时,有时候后台给你的字段和你要显示在表格列里的内容不一致。
例如后台给的字段是state,它的值为true或false,要求显示在表格里是‘正确’或‘错误’
这时可以给el-table-column
添加一个属性:formatter
,代码如下:
<el-table ref="accountTable"
:data="accountsListData"
border>
<el-table-column label="状态" prop="state" :formatter="stateFormat"></el-table-column>
</el-table>
methods:{
stateFormat(row, column) {
if (row.state === true) {
return '正确'
} else {
return '错误'
}
},
}