初始代码
This commit is contained in:
67
pages/my/subordinate/index.vue
Normal file
67
pages/my/subordinate/index.vue
Normal file
@@ -0,0 +1,67 @@
|
||||
<template>
|
||||
<view class="tree-main">
|
||||
<ly-tree v-if="isReady" :props="props" :node-key="props.value" :load="loadNode" lazy :tree-data="treeData"
|
||||
show-node-icon :defaultExpandAll='false' />
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import LyTree from './subordinateTree/ly-tree.vue'
|
||||
import {
|
||||
getSubordinate
|
||||
} from '@/api/common.js'
|
||||
let _self;
|
||||
export default {
|
||||
components: {
|
||||
LyTree
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isReady: false,
|
||||
props: {
|
||||
label: 'userName',
|
||||
isLeaf: 'isLeaf',
|
||||
value: "id",
|
||||
icon: 'avatar'
|
||||
},
|
||||
treeData: []
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
_self = this
|
||||
this.isReady = true;
|
||||
},
|
||||
computed: {
|
||||
baseURL() {
|
||||
return this.define.baseURL
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
loadNode(node, resolve) {
|
||||
if (node.level === 0) {
|
||||
getSubordinate(node.level).then(res => {
|
||||
let data = JSON.parse(JSON.stringify(res.data))
|
||||
data.map((o) => {
|
||||
o.avatar = _self.baseURL + o.avatar
|
||||
return data
|
||||
})
|
||||
resolve(data)
|
||||
})
|
||||
} else {
|
||||
getSubordinate(node.key).then(res => {
|
||||
let data = JSON.parse(JSON.stringify(res.data))
|
||||
data.map((o) => {
|
||||
o.avatar = _self.baseURL + o.avatar
|
||||
return data
|
||||
})
|
||||
resolve(data)
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user