.filter('typeBy', function() {
return function(value) {
return value == 58 ? '工资收入' : value == 31 ? '买入' : value == 5 ? '提现' : value == 57 ? '永鑫宝赎回': '';
};
})
三元表达式在 html 中的应用 {{}}
<td style="width:25%;">{{userInfo.userType == 1 ? '普通员工' :userInfo.userType == 0? '外部用户':''}}</td>
网友评论