最近遇到开发组织架构的需求,与以往开发的组织架构不同,不光要展示人名,还要显示职务(或者子公司名称)、对应的头像等,并且要考虑,如果用户未上传头像,需使用默认头像(男、女、中性),(⊙o⊙)…要尊重尊重,不能随便喊那啥...,还要考虑子公司或者不同部门之间的员工借调问题,现简化效果图如下:
1 data () {
2 return {
3 horizontal: false,
4 collapsable: false,
5 expandAll: true,
6 labelClassName: "bg-none",
7 datas:{
8 id:'1',
9 label:'老张伟',
10 position:'董事长',
11 img:'https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=4007973853,1345044449&fm=15&gp=0.jpg',
12 relations:'1',
13 children:[
14 {
15 id:'1-1',
16 label:'大张嘎',
17 position:'总经理',
18 img:'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=629230260,2582796696&fm=26&gp=0.jpg',
19 relations:'1-1',
20 children:[
21 {
22 id:'1-1-1',
23 label:'小张嘎',
24 position:'策划部',
25 img:'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=2495406741,1368429183&fm=26&gp=0.jpg',
26 relations:'1-1',
27 },
28 {
29 id:'1-1-2',
30 label:'中张嘎',
31 position:'规划部',
32 img:'https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=4125471676,2511464594&fm=26&gp=0.jpg',
33 relations:'1-1',
34 },
35 ]
36 },
37 {
38 id:'1-2',
39 label:'大刘彪',
40 position:'秘书长',
41 img:'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=291861640,4252957999&fm=26&gp=0.jpg',
42 relations:'1-2',
43 children:[
44 {
45 id:'1-2-1',
46 label:'中刘彪',
47 position:'人事部',
48 img:'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=4122062364,793453037&fm=26&gp=0.jpg',
49 relations:'1-2',
50 },
51 {
52 id:'1-2-2',
53 label:'小刘彪',
54 position:'行政部',
55 img:'https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=1018449383,841488959&fm=15&gp=0.jpg',
56 relations:'1-2',
57 },
58 ]
59 },
60 {
61 id:'1-3',
62 label:'大美女',
63 position:'财务总监',
64 img:'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=2745812195,432411379&fm=26&gp=0.jpg',
65 relations:'1-3',
66 children:[
67 {
68 id:'1-3-1',
69 label:'中美女',
70 position:'财务部',
71 img:'',
72 relations:'1-3',
73 sex:2,
74 children:[
75 {
76 id:'1-3-1-1',
77 label:'小美女',
78 position:'财务科',
79 img:'',
80 sex:0,
81 relations:'1-3',
82 },
83 ]
84 },
85 ]
86 },
87 {
88 id:'1-4',
89 label:'大霸王',
90 position:'技术总监',
91 img:'',
92 sex:1,
93 relations:'1-4',
94 children:[
95 {
96 id:'1-4-1',
97 label:'小霸王',
98 position:'技术部',
99 img:'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=481633131,466344723&fm=26&gp=0.jpg',
100 relations:'1-4',
101 },
102 {
103 id:'1-4-2',
104 label:'中霸王',
105 position:'研发部',
106 img:'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1490853638,1893546593&fm=26&gp=0.jpg',
107 relations:'1-4',
108 },
109 ]
110 },
111 {
112 id:'1-5',
113 label:'大赵帅',
114 position:'运营总监',
115 img:'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2010835987,458488842&fm=15&gp=0.jpg',
116 relations:'1-5',
117 children:[
118 {
119 id:'1-5-1',
120 label:'小赵帅',
121 position:'市场部',
122 img:'https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=3576627708,888952220&fm=26&gp=0.jpg',
123 relations:'1-5',
124 },
125 {
126 id:'1-5-2',
127 label:'中赵帅',
128 position:'销售部',
129 img:'https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=3102026869,1790261072&fm=26&gp=0.jpg',
130 relations:'1-3',
131 },
132 {
133 id:'1-5-3',
134 label:'老赵帅',
135 position:'执行部',
136 img:'https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=3444708870,1488183897&fm=26&gp=0.jpg',
137 relations:'1-5',
138 },
139 ]
140 },
141 ],
142 },
143 manUrl:require('@/assets/man.jpeg'),
144 womanUrl:require('@/assets/woman.jpg'),
145 shemaleUrl:require('@/assets/shemale.jpg'),
146 }
147 },