leftAsideTree.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!-- 左侧树结构 -->
  2. <template>
  3. <div class="left-aside">
  4. <el-tree
  5. default-expand-all
  6. :data="treeData"
  7. :props="defaultProps"
  8. accordion
  9. @current-change="changeNode"
  10. >
  11. </el-tree>
  12. </div>
  13. </template>
  14. <script>
  15. import { queryCategoryGraph } from "@/api/home";
  16. import { mapState } from "vuex";
  17. export default {
  18. data() {
  19. return {
  20. defaultProps: {
  21. children: "categoryList",
  22. label: "name",
  23. },
  24. treeData: [],
  25. };
  26. },
  27. mounted() {},
  28. computed: {
  29. ...mapState(["projectId"]),
  30. },
  31. watch: {
  32. projectId: {
  33. handler: function (val, oldVal) {
  34. this.getCategoryGraph();
  35. },
  36. immediate: true,
  37. },
  38. },
  39. methods: {
  40. changeNode(data, node) {
  41. if (node.isLeaf) {
  42. this.$emit("changeNode", data);
  43. }
  44. },
  45. //// 接口
  46. // 获取系统图类型
  47. getCategoryGraph() {
  48. const pa = {
  49. switch: false,
  50. };
  51. queryCategoryGraph(pa).then((res) => {
  52. this.treeData = res.content;
  53. if (!res.content.length) {
  54. this.$emit("noTree");
  55. } else {
  56. this.$emit("getDataSuc")
  57. }
  58. });
  59. },
  60. },
  61. };
  62. </script>
  63. <style lang="less" scoped>
  64. .left-aside {
  65. background: #f7f9fa;
  66. color: #1f2429;
  67. width: 100%;
  68. height: calc(100% - 49px);
  69. padding-left: 6px;
  70. .el-tree {
  71. background: #f7f9fa;
  72. /deep/ .el-tree-node {
  73. &.is-current {
  74. & > .el-tree-node__content {
  75. background: #e1f2ffff;
  76. color: #0091ffff;
  77. &:hover {
  78. background: #e1f2ffff;
  79. color: #0091ffff;
  80. }
  81. }
  82. }
  83. .el-tree-node__content {
  84. height: 38px;
  85. line-height: 38px;
  86. &:hover {
  87. background: #f5f6f7;
  88. color: #1f2429;
  89. }
  90. }
  91. }
  92. }
  93. }
  94. </style>