legendList.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!--左侧工具栏 -- 图例列表-->
  2. <template>
  3. <div class="lengend-list">
  4. <!-- 基础图例 -->
  5. <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
  6. <!-- 设备类 -->
  7. <equipmentList v-if="chiceStatus == 1" @openAddEqupModle="openAddEqupModle"></equipmentList>
  8. <!-- 管线类 -->
  9. <pipeList v-if="chiceStatus == 3"></pipeList>
  10. <!-- 添加设备 -->
  11. <add-equipment-dialog @closeModal="showAddEquipmentDialog = false" :showDialog="showAddEquipmentDialog" />
  12. <!-- <div class="close-lengend"></div> -->
  13. </div>
  14. </template>
  15. <script>
  16. import pipeList from "./pipeList.vue";
  17. import equipmentList from "./equipmentList.vue";
  18. // import addItemModel from "./addItemModel.vue";
  19. import addBaseItem from "./addBaseItem.vue";
  20. import addEquipmentDialog from "./addEquipmentDialog";
  21. export default {
  22. components: { pipeList, equipmentList, addBaseItem, addEquipmentDialog },
  23. props: ["chiceStatus"],
  24. data() {
  25. return {
  26. showAddEquipmentDialog: false,
  27. // choiceLegend: "" //选中绘制类型
  28. };
  29. },
  30. methods: {
  31. openAddEqupModle() {
  32. console.log("openAddEqupModle");
  33. this.showAddEquipmentDialog = true;
  34. },
  35. },
  36. };
  37. </script>
  38. <style scoped lang="less">
  39. .lengend-list {
  40. width: 100%;
  41. height: 100%;
  42. position: relative;
  43. .close-lengend {
  44. width: 20px;
  45. height: 40px;
  46. position: absolute;
  47. right: -20px;
  48. top: 50%;
  49. transform: translateY(-50%);
  50. background: red;
  51. z-index: 999;
  52. }
  53. }
  54. </style>