{
dot.get(detail, 'role_type_list', []).length > 0
? dot.get(detail, 'role_type_list', []).reduce((acc, cur, idx) => {
if (idx === 0) return RoleType.description(cur);
return `${acc}、${RoleType.description(cur)}`;
}, '')
: '--'
}
网友评论