Header.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <template>
  2. <div class="header-menu">
  3. <ul class="header-menu-list">
  4. <li class="header-menu-item" v-for="(menu, index) of currMenu" :key="menu" @click="click(index, menu)"
  5. :class="{ active: activeIndex == index }">
  6. {{ menu.text }}
  7. </li>
  8. </ul>
  9. <!-- <ul class="header-menu-dropdown" :class="{ dropdown: dropdown }">
  10. <li class="header-menu-dropdown-title" @click="clickMenu()"><i class="fa fa-gear"></i>菜单<i class="fa fa-sort-down down"></i></li>
  11. <ul class="header-menu-dropdown-list">
  12. <li class="header-menu-dropdown-item" v-for="(menu, index) of menusDropdown" :key="menu" @click="clickSubMenu(index, menu.code)">
  13. {{ menu.text }}
  14. </li>
  15. </ul>
  16. </ul> -->
  17. <ul class="header-menu-user">
  18. <li class="header-menu-user-title">
  19. <span>退出</span>
  20. <!-- <el-dropdown size="small" trigger="click" :hide-on-click="true" popper-class="dropdown"
  21. @command="handleCommand">
  22. <span class="el-dropdown-link">
  23. <i class="fa fa-user"></i>{{ userName }}
  24. </span>
  25. <template #dropdown>
  26. <el-dropdown-menu>
  27. <el-dropdown-item command="logout"> 退出登录 </el-dropdown-item>
  28. </el-dropdown-menu>
  29. </template>
  30. </el-dropdown> -->
  31. </li>
  32. <!-- <li class="header-menu-user-title">
  33. <el-tooltip
  34. effect="dark"
  35. content="后台管理系统"
  36. placement="bottom"
  37. popper-class="admin-set-tooltip"
  38. >
  39. <i class="svg-icon svg-icon-white" @click="goToAdmin">
  40. <SvgIcon svgid="svg-admin-set"></SvgIcon>
  41. </i>
  42. </el-tooltip>
  43. </li> -->
  44. </ul>
  45. </div>
  46. </template>
  47. <script>
  48. import $ from "jquery";
  49. import {
  50. getCookie
  51. } from "@/utills/auth";
  52. import tools from "../../tools/encryption.js";
  53. import {
  54. logout
  55. } from "@/api/common.js";
  56. import {
  57. encrypt,
  58. decrypt
  59. } from "@/utills/jsencrypt.js";
  60. import SvgIcon from "@/components/coms/icon/svg-icon.vue";
  61. export default {
  62. data() {
  63. return {
  64. themeName: false,
  65. menus: [{
  66. id: "home",
  67. text: "首页",
  68. path: "/home",
  69. isActive: true,
  70. },
  71. {
  72. id: "stateMonitor",
  73. text: "监视中心",
  74. path: "/stateMonitor",
  75. isActive: true,
  76. },
  77. {
  78. id: "integratedAlarm",
  79. text: "综合报警",
  80. path: "/integratedAlarm",
  81. isActive: true,
  82. },
  83. {
  84. id: "economicsOperation",
  85. text: "经济运行",
  86. path: "/economicsOperation",
  87. isActive: false,
  88. },
  89. {
  90. id: "health",
  91. text: "智慧检修",
  92. // path: '/sandtable',
  93. path: "/health",
  94. isActive: false,
  95. },
  96. {
  97. id: "powerGenerating",
  98. text: "发电能力分析",
  99. // path: '/sandtable',
  100. path: "/powerGenerating",
  101. isActive: false,
  102. },
  103. {
  104. id: "report",
  105. text: "智能报表",
  106. path: "/nxreport",
  107. isActive: false,
  108. },
  109. ],
  110. activeIndex: 0,
  111. // menusDropdown: [
  112. // {
  113. // text: "子菜单1",
  114. // code: "submenu1",
  115. // },
  116. // {
  117. // text: "子菜单2",
  118. // code: "submenu2",
  119. // },
  120. // {
  121. // text: "子菜单3",
  122. // code: "submenu3",
  123. // },
  124. // ],
  125. // dropdown: false,
  126. firsttime: 0,
  127. };
  128. },
  129. components: {
  130. SvgIcon
  131. },
  132. mounted() {
  133. // let that = this;
  134. // $(document).keydown((event) => {
  135. // if (event.keyCode == 192) {
  136. // // c
  137. // // let firstDate = new Date();
  138. // // if (that.firsttime == 0) {
  139. // // that.firsttime = firstDate.getTime();
  140. // // } else {
  141. // // var lastDate = new Date();
  142. // // var lastTime = lastDate.getTime();
  143. // // if (lastTime - that.firsttime < 1000) {
  144. // // that.changeTheme();
  145. // // that.firsttime = 0;
  146. // // }
  147. // // }
  148. // that.changeTheme();
  149. // }
  150. // });
  151. },
  152. computed: {
  153. userName() {
  154. return getCookie("username") || this.$store.state.user.username;
  155. },
  156. // activeClass(data) {
  157. // return data.isActive ? "active" : "";
  158. // },
  159. currMenu() {
  160. let stateRoutes = this.$store.state.routes.routes;
  161. let currMenu = [];
  162. if (stateRoutes.length) {
  163. stateRoutes.forEach((route) => {
  164. if (route.path !== "/login" && route.path !== "/") {
  165. currMenu.push({
  166. id: route.name,
  167. text: route.meta.title,
  168. path: route.path,
  169. isActive: false,
  170. });
  171. }
  172. });
  173. // currMenu.splice(2, 0, {
  174. // id: "zhbj",
  175. // text: "综合报警",
  176. // path: "",
  177. // });
  178. // currMenu.splice(5, 0, {
  179. // id: "fdfx",
  180. // text: "发电能力分析",
  181. // path: "",
  182. // });
  183. // currMenu.push();
  184. return currMenu;
  185. } else {
  186. return [];
  187. }
  188. },
  189. },
  190. methods: {
  191. click(index, data) {
  192. if (data.id === "zhbj") {
  193. let jiami = encrypt(getCookie("jiami")).replace(/\+/g, " ");
  194. // let url = `http://192.168.1.117:3002/#/check?username=${getCookie(
  195. // "username"
  196. // )}&jiami=${jiami}`;
  197. let url = `http://10.81.3.154:8083/#/check?username=${getCookie(
  198. "username"
  199. )}&jiami=${jiami}`;
  200. window.open(url);
  201. return;
  202. } else if (data.id === "fdfx") {
  203. let jiami = encrypt(getCookie("jiami")).replace(/\+/g, " ");
  204. // let url = `http://192.168.1.117:3002/#/check?username=${getCookie(
  205. // "username"
  206. // )}&jiami=${jiami}`;
  207. let url = `http://10.81.3.155:8083/dlfx/#/check?username=${getCookie(
  208. "username"
  209. )}&jiami=${jiami}`;
  210. window.open(url);
  211. return;
  212. }
  213. this.activeIndex = index;
  214. this.$router.push(data.path);
  215. const ActiveModule = this.currMenu.find((ele) => {
  216. return ele.path === data.path;
  217. });
  218. if (ActiveModule) {
  219. this.$store.dispatch("changeModuleName", ActiveModule.text);
  220. }
  221. },
  222. clickSubMenu(index, code) {},
  223. clickMenu() {
  224. this.dropdown = !this.dropdown;
  225. },
  226. changeTheme() {
  227. $("#appBody").toggleClass("dark light");
  228. this.$store.dispatch("changeTheme", $("#appBody").attr("class"));
  229. this.$store.state.themeName === "dark" ?
  230. (this.themeName = false) :
  231. (this.themeName = true);
  232. localStorage.setItem("themeName", this.$store.state.themeName);
  233. },
  234. handleCommand(command) {
  235. if (command == "logout") {
  236. logout({
  237. token: getCookie("authToken"),
  238. userId: getCookie("userId"),
  239. }).then((res) => {
  240. this.$store.commit("user/REMOVE_TOKEN");
  241. this.$store.commit("changeStationAll", []);
  242. this.$router.push("/login");
  243. });
  244. }
  245. },
  246. // 跳转到管理系统
  247. goToAdmin() {
  248. let jiami = encrypt(getCookie("jiami")).replace(/\+/g, " ");
  249. // let url = `http://192.168.1.104:80/#/check?username=${getCookie(
  250. let url = `http://10.81.3.127:8083/#/check?username=${getCookie(
  251. "username"
  252. )}&jiami=${jiami}`;
  253. window.open(url);
  254. },
  255. },
  256. watch: {
  257. $route: {
  258. handler: function (val, oldVal) {
  259. if (this.currMenu.length) {
  260. this.currMenu.some((t, index) => {
  261. if (val.path.includes(t.id)) {
  262. this.activeIndex = index;
  263. const ActiveModule = this.currMenu.find((ele) => {
  264. return ele.path === t.path;
  265. });
  266. if (ActiveModule) {
  267. this.$store.dispatch("changeModuleName", ActiveModule.text);
  268. }
  269. }
  270. });
  271. }
  272. },
  273. //深度观察监听
  274. deep: true,
  275. },
  276. },
  277. };
  278. </script>
  279. <style>
  280. .admin-set-tooltip {
  281. font-size: 14px !important;
  282. }
  283. </style>
  284. <style lang="less" scoped>
  285. .header-menu {
  286. display: flex;
  287. width: 100%;
  288. height: 100%;
  289. font-size: @fontsize;
  290. justify-content: flex-end;
  291. .header-menu-list {
  292. margin: 0;
  293. padding: 0;
  294. list-style: none;
  295. display: flex;
  296. height: 100%;
  297. .header-menu-item {
  298. display: flex;
  299. align-items: center;
  300. justify-content: center;
  301. padding: 0 15px;
  302. // width: 9.259vh;
  303. height: 100%;
  304. color: @font-color;
  305. cursor: pointer;
  306. transition: color 0.2s ease-in-out;
  307. &.active {
  308. color: @green;
  309. position: relative;
  310. background: @greenLinearTop;
  311. transition: color 0.2s ease-in-out;
  312. &::after {
  313. content: "";
  314. position: absolute;
  315. width: 100%;
  316. height: 3px;
  317. border: 1px solid @green;
  318. border-top: 0;
  319. left: 0;
  320. bottom: 0;
  321. box-sizing: border-box;
  322. }
  323. }
  324. }
  325. }
  326. .header-menu-user {
  327. width: 10%;
  328. height: 100%;
  329. margin: 0;
  330. padding: 0;
  331. list-style: none;
  332. display: flex;
  333. align-items: center;
  334. .header-menu-user-title {
  335. display: flex;
  336. align-items: center;
  337. justify-content: center;
  338. width: 100%;
  339. height: 100%;
  340. color: @gray;
  341. cursor: pointer;
  342. i {
  343. margin: 0 5px;
  344. font-size: 16px;
  345. }
  346. .el-dropdown-link {
  347. color: #05bb4c;
  348. font-size: 16px;
  349. }
  350. }
  351. }
  352. }
  353. .warning {
  354. display: flex;
  355. align-items: center;
  356. color: #7a8385;
  357. }
  358. .dropdown {
  359. .el-dropdown-menu {
  360. background: #111d1c;
  361. border-radius: 3px;
  362. .el-dropdown-menu__item {
  363. color: #dfeef1;
  364. font-size: 14px !important;
  365. &:hover {
  366. color: #05bb4c;
  367. }
  368. }
  369. }
  370. }
  371. </style>