legendList.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!--左侧工具栏 -- 图例列表-->
  2. <template>
  3. <div class="lengend-list">
  4. <!-- 基础图例 -->
  5. <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
  6. <!-- 设备类 -->
  7. <equipmentList
  8. v-if="chiceStatus == 1"
  9. @openAddEqupModle="showAddItemModel = true"
  10. ></equipmentList>
  11. <!-- 管线类 -->
  12. <pipeList v-if="chiceStatus == 3"></pipeList>
  13. <!-- 新增实例对象 -->
  14. <addItemModel
  15. @closeModel="showAddItemModel = false"
  16. :showAddItemModel="showAddItemModel"
  17. ></addItemModel>
  18. </div>
  19. </template>
  20. <script>
  21. import pipeList from "./pipeList.vue";
  22. import equipmentList from "./equipmentList.vue";
  23. import addItemModel from "./addItemModel.vue";
  24. import addBaseItem from "./addBaseItem.vue";
  25. export default {
  26. components: { pipeList, equipmentList, addItemModel, addBaseItem },
  27. props: ["chiceStatus"],
  28. data() {
  29. return {
  30. showAddItemModel: false,
  31. // choiceLegend: "" //选中绘制类型
  32. };
  33. }
  34. };
  35. </script>
  36. <style scoped lang="less">
  37. .lengend-list {
  38. width: 100%;
  39. height: 100%;
  40. }
  41. </style>