leftToolBar.vue 3.6 KB

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