leftToolBar.vue 4.0 KB

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