瀏覽代碼

通讯录+手机号

临城职教中职
ndbs 2 年之前
父節點
當前提交
941830f557
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. +9
    -0
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/organize-tree.vue

+ 9
- 0
Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/organize-tree.vue 查看文件

@@ -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() {


Loading…
取消
儲存