{{ store.state.userInfo.username }}
- <{{ store.state.userInfo.role_id === 1 ? '管理员' : '普通用户' }}>
+ <{{ (function (){
+ if (store.state.userInfo.role_id === 1) {
+ return '管理员';
+ }
+ if (store.state.userInfo.role_id === 0) {
+ return '普通用户';
+ }
+ return '游客'
+ })() }}>