index.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <template>
  2. <div :class="{ 'has-logo': showLogo }">
  3. <logo v-if="showLogo" :collapse="isCollapse" />
  4. <el-scrollbar wrap-class="scrollbar-wrapper">
  5. <el-menu class="navMenu" :default-active="activeMenu" :background-color="variables.menusBg" :text-color="variables.menuText" :unique-opened="false" :active-text-color="variables.menuActiveText" :collapse-transition="false" mode="vertical">
  6. <sidebar-item v-for="(route, index) in permission_routes" :key="index" :item="route" :base-path="route.path" :leup="leup" />
  7. </el-menu>
  8. </el-scrollbar>
  9. </div>
  10. </template>
  11. <script>
  12. import { mapGetters } from "vuex";
  13. import Logo from "./Logo";
  14. import SidebarItem from "./SidebarItem";
  15. import variables from "@/styles/variables.scss";
  16. export default {
  17. data () {
  18. return {
  19. leup: true,
  20. };
  21. },
  22. components: { SidebarItem, Logo },
  23. computed: {
  24. ...mapGetters(["sidebar", "permission_routes"]),
  25. routes () {
  26. const power = typeof this.userPowerList == "string" ? JSON.parse(this.userPowerList) : this.userPowerList;
  27. return power;
  28. // const datas = this.$router.options.routes;
  29. // const arrs = [];
  30. // const menus = [];
  31. // if (power && power.length) {
  32. // for (const item of datas) {
  33. // if (item.meta) {
  34. // arrs.push(item);
  35. // }
  36. // }
  37. // arrs.forEach(item => {
  38. // power.forEach(p => {
  39. // if (item.meta.isModule == p) {
  40. // menus.push(item);
  41. // }
  42. // })
  43. // })
  44. // return menus;
  45. // } else {
  46. // return datas;
  47. // }
  48. },
  49. activeMenu () {
  50. const route = this.$route;
  51. const { meta, path } = route;
  52. // if set path, the sidebar will highlight the path you set
  53. if (meta.activeMenu) {
  54. return meta.activeMenu;
  55. }
  56. return path;
  57. },
  58. showLogo () {
  59. return this.$store.state.settings.sidebarLogo;
  60. },
  61. variables () {
  62. return variables;
  63. },
  64. isCollapse () {
  65. return !this.sidebar.opened;
  66. },
  67. },
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. .rloop {
  72. width: 8px;
  73. height: 100%;
  74. position: absolute;
  75. // background: #2d67e3;
  76. z-index: 999;
  77. right: 0;
  78. top: 0;
  79. > .log_open {
  80. width: 8px;
  81. height: 144px;
  82. background: #385086;
  83. border-radius: 0px 8px 8px 0px;
  84. position: absolute;
  85. top: 42%;
  86. right: -8px;
  87. display: flex;
  88. align-items: center;
  89. > .arrows {
  90. width: 6px;
  91. height: 6px;
  92. background: url("../../../assets/logo/ic_arrow_left.png") no-repeat;
  93. }
  94. > .arrow {
  95. width: 6px;
  96. height: 6px;
  97. background: url("../../../assets/logo/ic_arrow_right.png") no-repeat;
  98. }
  99. // border-top-right-radius: 12px;
  100. // border-bottom-right-radius: 12px;
  101. }
  102. // > .log_open:hover {
  103. // background: #2d67e3;
  104. // > .rloop {
  105. // background: #2d67e3;
  106. // }
  107. // }
  108. &:hover {
  109. background: #2d67e3;
  110. > .log_open {
  111. background: #2d67e3;
  112. }
  113. }
  114. > img {
  115. width: 20px;
  116. height: 20px;
  117. position: absolute;
  118. top: 45%;
  119. right: -10px;
  120. }
  121. }
  122. ::v-deep .navMenu {
  123. .router-link-active {
  124. .account {
  125. background: url("../../../assets/nav/ic_list_nav_account_check.png")
  126. no-repeat;
  127. }
  128. .accountgroup {
  129. background: url("../../../assets/nav/ic_list_nav_group_check.png")
  130. no-repeat;
  131. }
  132. .role {
  133. background: url("../../../assets/nav/ic_list_nav_character_check.png")
  134. no-repeat;
  135. }
  136. .authority {
  137. background: url("../../../assets/nav/ic_list_nav_permissions_check.png")
  138. no-repeat;
  139. }
  140. .transfer {
  141. background: url("../../../assets/nav/ic_list_nav_transit_check.png")
  142. no-repeat;
  143. }
  144. .arrival {
  145. background: url("../../../assets/nav/ic_list_nav_arrive_check.png")
  146. no-repeat;
  147. }
  148. .departure {
  149. background: url("../../../assets/nav/ic_list_nav_leave_check.png")
  150. no-repeat;
  151. }
  152. .dataCollection {
  153. background: url("../../../assets/nav/ic_data_collection_check.png")
  154. no-repeat;
  155. }
  156. .dataParser {
  157. background: url("../../../assets/nav/ic_data_governance_check .png")
  158. no-repeat;
  159. }
  160. .dataStore {
  161. background: url("../../../assets/nav/ic_data_save_check.png") no-repeat;
  162. }
  163. .dashboard {
  164. background: url("../../../assets/nav/ic_setting_nav_check.png") no-repeat;
  165. }
  166. .advance {
  167. background: url("../../../assets/nav/ic_list_nav_search_check.png")
  168. no-repeat;
  169. }
  170. .integration {
  171. background: url("../../../assets/nav/ic_data_governance_check .png")
  172. no-repeat;
  173. }
  174. .protocol {
  175. background: url("../../../assets/nav/ic_list_nav_agreement_check.png")
  176. no-repeat;
  177. }
  178. .deployNode {
  179. background: url("../../../assets/nav/ic_list_nav_node_check.png")
  180. no-repeat;
  181. }
  182. .sourceDataItem {
  183. background: url("../../../assets/nav/ic_list_nav_source_check.png")
  184. no-repeat;
  185. }
  186. .BasicsData {
  187. background: url("../../../assets/nav/ic_data_collection_check.png")
  188. no-repeat;
  189. }
  190. .systemSettings {
  191. background: url("../../../assets/nav/ic_setting_nav_check.png") no-repeat;
  192. }
  193. .statisticsCharts {
  194. background: url("../../../assets/nav/ic_list_nav_statistical_check.png")
  195. no-repeat;
  196. }
  197. .statisticalAnalysis {
  198. background: url("../../../assets/nav/ic_list_nav_screen_check.png")
  199. no-repeat;
  200. }
  201. }
  202. }
  203. </style>