码迷,mamicode.com
首页 > 其他好文 > 详细

elementui 表格格式化

时间:2019-01-10 15:29:34      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:turn   nbsp   format   else   ons   code   att   eth   arp   

<el-table-column prop="userType" label="角色" width="180" :formatter="ifuserType"></el-table-column>

  

在el-table里直接加一个formatter,绑定一个方法

在methods中加入

ifuserType(val){
console.log(val.userType);

if(val.userType == ‘0‘){
return "管理员"
}else if (val.userType == ‘1‘){
return "财务"
}else{
return "楼长"
}
},

 

elementui 表格格式化

标签:turn   nbsp   format   else   ons   code   att   eth   arp   

原文地址:https://www.cnblogs.com/opcec/p/10249836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!