elementui 表格格式化


<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 "樓長"
}
},

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM