|
|
@@ -22,6 +22,7 @@ |
|
|
|
|
|
|
|
<!-- 名称 --> |
|
|
|
<text class="tree-item-title">{{ name }}</text> |
|
|
|
<!-- <text class="tree-item-title">{{ name + (mobile ? '(' +mobile + ')' : "") }}</text> --> |
|
|
|
|
|
|
|
<!-- 非用户,显示后置标题 --> |
|
|
|
<l-tag v-if="root.type !== 'user' || staffTag" :line="tagColor" size="sm" class="margin-left-sm"> |
|
|
@@ -196,6 +197,14 @@ export default { |
|
|
|
const rootItem = this.GET_GLOBAL(this.root.type)[this.root.id] |
|
|
|
return rootItem ? rootItem.name : '(根节点)' |
|
|
|
}, |
|
|
|
mobile() { |
|
|
|
if (this.root.mobile) { |
|
|
|
return this.root.mobile |
|
|
|
} |
|
|
|
|
|
|
|
const rootItem = this.GET_GLOBAL(this.root.type)[this.root.id] |
|
|
|
return rootItem ? rootItem.mobile: '(根节点)' |
|
|
|
}, |
|
|
|
|
|
|
|
// 头像圆形/方形显示参数 |
|
|
|
roundAvatar() { |
|
|
|