1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| const mock = [ { key: 1, title: "总公司", children: [ { key: 2, title: "总经办", children: [ { key: 3, title: "总经理", children: [ { key: 11,title: "张三", userId: 1, jobNumber: "111111" }, { key: 12,title: "李四", userId: 2, jobNumber: "122222" }, { key: 123,title: "李四", userId: 24, jobNumber: "3453454" }, ] }, { key: 4, title: "总经理", children: [ { key: 13,title: "王五", userId: 3, jobNumber: "133333" } ] }, ] }, { key: 5, title: "市场部", children: [] } ] } ]
|