legendList.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. :filtIdList="[]"
  18. ></addItemModel>
  19. <!-- :showAddItemModel="showAddItemModel" -->
  20. </div>
  21. </template>
  22. <script>
  23. import pipeList from "./pipeList.vue";
  24. import equipmentList from "./equipmentList.vue";
  25. import addItemModel from "./addItemModel.vue";
  26. import addBaseItem from "./addBaseItem.vue";
  27. export default {
  28. components: { pipeList, equipmentList, addItemModel, addBaseItem },
  29. props: ["chiceStatus"],
  30. data() {
  31. return {
  32. showAddItemModel: false,
  33. // choiceLegend: "" //选中绘制类型
  34. };
  35. },
  36. };
  37. </script>
  38. <style scoped lang="less">
  39. .lengend-list {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. </style>