leftToolBar.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <!-- 左侧工具栏 -->
  2. <template>
  3. <div class="left-tool-bar">
  4. <div class="btn-list">
  5. <ul>
  6. <li
  7. v-for="(item, index) in leftData"
  8. :key="index"
  9. :class="{ 'btn-active': chiceStatus == index }"
  10. @click="openTool(index)"
  11. >
  12. <img
  13. width="20px"
  14. height="20px"
  15. :src="chiceStatus == index ? item.activeIcon : item.icon"
  16. alt
  17. />
  18. <span>{{ item.name }}</span>
  19. </li>
  20. </ul>
  21. </div>
  22. <el-drawer
  23. size="220px"
  24. :with-header="false"
  25. :destroy-on-close="true"
  26. :visible.sync="drawer"
  27. :direction="direction"
  28. :modal="false"
  29. :modal-append-to-body="false"
  30. :show-close="true"
  31. :before-close="handleClose"
  32. :wrapperClosable="false"
  33. custom-class="drawer-box"
  34. >
  35. <legendList :chiceStatus="chiceStatus"></legendList>
  36. </el-drawer>
  37. <!-- :visible.sync="drawer" -->
  38. </div>
  39. </template>
  40. <script>
  41. const leftData = [
  42. {
  43. id: "tongyong",
  44. name: "通用",
  45. icon: require("./../../assets/images/leftImgs/tongyong.png"),
  46. activeIcon: require("./../../assets/images/leftImgs/tongyongactive.png"),
  47. },
  48. {
  49. id: "equipment",
  50. name: "设备",
  51. icon: require("./../../assets/images/leftImgs/equipment.png"),
  52. activeIcon: require("./../../assets/images/leftImgs/equipmentactive.png"),
  53. },
  54. {
  55. id: "equipList",
  56. name: "设备组",
  57. icon: require("./../../assets/images/leftImgs/equipList.png"),
  58. activeIcon: require("./../../assets/images/leftImgs/equipListActive.png"),
  59. },
  60. {
  61. id: "guanxian",
  62. name: "管线",
  63. icon: require("./../../assets/images/leftImgs/guanxian.png"),
  64. activeIcon: require("./../../assets/images/leftImgs/guanxianactive.png"),
  65. },
  66. {
  67. id: "space",
  68. name: "空间",
  69. icon: require("./../../assets/images/leftImgs/space.png"),
  70. activeIcon: require("./../../assets/images/leftImgs/spaceactive.png"),
  71. },
  72. {
  73. id: "same",
  74. name: "同类",
  75. icon: require("./../../assets/images/leftImgs/same.png"),
  76. activeIcon: require("./../../assets/images/leftImgs/sameactive.png"),
  77. },
  78. ];
  79. import legendList from "./leftToolBar/legendList.vue";
  80. import { mapMutations } from "vuex";
  81. export default {
  82. components: { legendList },
  83. data() {
  84. return {
  85. drawer: false,
  86. chiceStatus: -1, //选中按钮状态
  87. direction: "ltr",
  88. leftData,
  89. };
  90. },
  91. methods: {
  92. ...mapMutations(["SETCHOICELEHEND"]),
  93. handleClose() {
  94. this.drawer = false;
  95. },
  96. openTool(val) {
  97. if (val != this.chiceStatus) {
  98. this.chiceStatus = val;
  99. if (this.drawer) {
  100. this.drawer = false;
  101. 4;
  102. setTimeout(() => {
  103. this.drawer = true;
  104. }, 300);
  105. } else {
  106. this.drawer = true;
  107. }
  108. } else {
  109. this.drawer = !this.drawer;
  110. this.chiceStatus = -1;
  111. }
  112. },
  113. choiceStatus() {
  114. this.chiceStatus = 0;
  115. this.drawer = false;
  116. this.SETCHOICELEHEND("");
  117. },
  118. },
  119. };
  120. </script>
  121. <style lang="less" scoped>
  122. ul,
  123. li {
  124. margin: 0;
  125. padding: 0;
  126. list-style-type: none;
  127. }
  128. .left-tool-bar {
  129. background: rgba(255, 255, 255, 1);
  130. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  131. box-sizing: border-box;
  132. height: calc(~"100% - 2px");
  133. .btn-list {
  134. height: 100%;
  135. ul {
  136. width: 54px;
  137. height: 100%;
  138. border-top: 1px solid #eee;
  139. border-right: 1px solid #eee;
  140. li {
  141. width: 100%;
  142. height: 58px;
  143. border-bottom: 1px solid #eee;
  144. display: flex;
  145. justify-content: center;
  146. align-items: center;
  147. flex-direction: column;
  148. cursor: pointer;
  149. span {
  150. color: #8d9399;
  151. font-size: 12px;
  152. }
  153. }
  154. li:hover {
  155. background: #e4e5e7;
  156. }
  157. .btn-active {
  158. background: #e1f2ff !important;
  159. span {
  160. color: #0091ff;
  161. }
  162. }
  163. }
  164. }
  165. }
  166. .el-drawer__wrapper {
  167. left: 64px;
  168. top: 86px;
  169. // box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  170. width: 242px;
  171. }
  172. </style>