legendList.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!--左侧工具栏 -- 图例列表-->
  2. <template>
  3. <div class="lengend-list">
  4. <!-- 基础图例 -->
  5. <div class="lengend-item" v-for="(item,index) in baseEditItems" :key="index">
  6. <span class="legend-title">{{item.title}}</span>
  7. <div class="legend-content" v-for="(itemList,i) in item.itemList" :key="i">
  8. <div class="title">{{itemList.title}}</div>
  9. <ul>
  10. <li
  11. :class="{ 'btn-active': choiceLegend== baseItem.id }"
  12. v-for="(baseItem,k) in itemList.itemList"
  13. :key="k"
  14. @click="drawItem(baseItem.id)"
  15. >
  16. <div class="icon"></div>
  17. <span>{{baseItem.name}}</span>
  18. </li>
  19. </ul>
  20. </div>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. import { baseEditItems } from "./data";
  26. import { mapMutations, mapState } from "vuex";
  27. export default {
  28. data() {
  29. return {
  30. baseEditItems
  31. // choiceLegend: "" //选中绘制类型
  32. };
  33. },
  34. computed: {
  35. ...mapState(["choiceLegend"])
  36. },
  37. methods: {
  38. ...mapMutations(["SETCHOICELEHEND"]),
  39. drawItem(item) {
  40. this.SETCHOICELEHEND(item);
  41. }
  42. }
  43. };
  44. </script>
  45. <style scoped lang="less">
  46. .lengend-list {
  47. width: 100%;
  48. .lengend-item {
  49. width: 100%;
  50. .legend-title {
  51. display: block;
  52. font-size: 14px;
  53. height: 14px;
  54. line-height: 14px;
  55. margin-left: 10px;
  56. color: #8D9399;
  57. }
  58. .legend-content {
  59. padding: 0 10 10px 10px;
  60. box-sizing: border-box;
  61. .title {
  62. margin-left: 10px;
  63. font-weight: bold;
  64. border-top: 1px solid #eee;
  65. padding-top: 10px;
  66. padding-bottom: 10px;
  67. }
  68. ul {
  69. display: flex;
  70. justify-content: space-around;
  71. li {
  72. font-size: 12px;
  73. width: 44px;
  74. height: 44px;
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. flex-direction: column;
  79. padding: 4px;
  80. box-sizing: border-box;
  81. .icon {
  82. width: 22px;
  83. height: 22px;
  84. background: red;
  85. }
  86. cursor: pointer;
  87. }
  88. li:hover {
  89. background: #e1f2ff;
  90. }
  91. .btn-active {
  92. background: #e1f2ff;
  93. }
  94. }
  95. }
  96. }
  97. }
  98. </style>