leftToolBar.vue 4.1 KB

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