123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- <template>
- <div class="header-menu">
- <ul class="header-menu-list">
- <li class="header-menu-item" v-for="(menu, index) of currMenu" :key="menu" @click="click(index, menu)"
- :class="{ active: activeIndex == index }">
- {{ menu.text }}
- </li>
- </ul>
- <!-- <ul class="header-menu-dropdown" :class="{ dropdown: dropdown }">
- <li class="header-menu-dropdown-title" @click="clickMenu()"><i class="fa fa-gear"></i>菜单<i class="fa fa-sort-down down"></i></li>
- <ul class="header-menu-dropdown-list">
- <li class="header-menu-dropdown-item" v-for="(menu, index) of menusDropdown" :key="menu" @click="clickSubMenu(index, menu.code)">
- {{ menu.text }}
- </li>
- </ul>
- </ul> -->
- <ul class="header-menu-user">
- <li class="header-menu-user-title">
- <span>退出</span>
- <!-- <el-dropdown size="small" trigger="click" :hide-on-click="true" popper-class="dropdown"
- @command="handleCommand">
- <span class="el-dropdown-link">
- <i class="fa fa-user"></i>{{ userName }}
- </span>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item command="logout"> 退出登录 </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown> -->
- </li>
- <!-- <li class="header-menu-user-title">
- <el-tooltip
- effect="dark"
- content="后台管理系统"
- placement="bottom"
- popper-class="admin-set-tooltip"
- >
- <i class="svg-icon svg-icon-white" @click="goToAdmin">
- <SvgIcon svgid="svg-admin-set"></SvgIcon>
- </i>
- </el-tooltip>
- </li> -->
- </ul>
- </div>
- </template>
- <script>
- import $ from "jquery";
- import {
- getCookie
- } from "@/utills/auth";
- import tools from "../../tools/encryption.js";
- import {
- logout
- } from "@/api/common.js";
- import {
- encrypt,
- decrypt
- } from "@/utills/jsencrypt.js";
- import SvgIcon from "@/components/coms/icon/svg-icon.vue";
- export default {
- data() {
- return {
- themeName: false,
- menus: [{
- id: "home",
- text: "首页",
- path: "/home",
- isActive: true,
- },
- {
- id: "stateMonitor",
- text: "监视中心",
- path: "/stateMonitor",
- isActive: true,
- },
- {
- id: "integratedAlarm",
- text: "综合报警",
- path: "/integratedAlarm",
- isActive: true,
- },
- {
- id: "economicsOperation",
- text: "经济运行",
- path: "/economicsOperation",
- isActive: false,
- },
- {
- id: "health",
- text: "智慧检修",
- // path: '/sandtable',
- path: "/health",
- isActive: false,
- },
- {
- id: "powerGenerating",
- text: "发电能力分析",
- // path: '/sandtable',
- path: "/powerGenerating",
- isActive: false,
- },
- {
- id: "report",
- text: "智能报表",
- path: "/nxreport",
- isActive: false,
- },
- ],
- activeIndex: 0,
- // menusDropdown: [
- // {
- // text: "子菜单1",
- // code: "submenu1",
- // },
- // {
- // text: "子菜单2",
- // code: "submenu2",
- // },
- // {
- // text: "子菜单3",
- // code: "submenu3",
- // },
- // ],
- // dropdown: false,
- firsttime: 0,
- };
- },
- components: {
- SvgIcon
- },
- mounted() {
- // let that = this;
- // $(document).keydown((event) => {
- // if (event.keyCode == 192) {
- // // c
- // // let firstDate = new Date();
- // // if (that.firsttime == 0) {
- // // that.firsttime = firstDate.getTime();
- // // } else {
- // // var lastDate = new Date();
- // // var lastTime = lastDate.getTime();
- // // if (lastTime - that.firsttime < 1000) {
- // // that.changeTheme();
- // // that.firsttime = 0;
- // // }
- // // }
- // that.changeTheme();
- // }
- // });
- },
- computed: {
- userName() {
- return getCookie("username") || this.$store.state.user.username;
- },
- // activeClass(data) {
- // return data.isActive ? "active" : "";
- // },
- currMenu() {
- let stateRoutes = this.$store.state.routes.routes;
- let currMenu = [];
- if (stateRoutes.length) {
- stateRoutes.forEach((route) => {
- if (route.path !== "/login" && route.path !== "/") {
- currMenu.push({
- id: route.name,
- text: route.meta.title,
- path: route.path,
- isActive: false,
- });
- }
- });
- // currMenu.splice(2, 0, {
- // id: "zhbj",
- // text: "综合报警",
- // path: "",
- // });
- // currMenu.splice(5, 0, {
- // id: "fdfx",
- // text: "发电能力分析",
- // path: "",
- // });
- // currMenu.push();
- return currMenu;
- } else {
- return [];
- }
- },
- },
- methods: {
- click(index, data) {
- if (data.id === "zhbj") {
- let jiami = encrypt(getCookie("jiami")).replace(/\+/g, " ");
- // let url = `http://192.168.1.117:3002/#/check?username=${getCookie(
- // "username"
- // )}&jiami=${jiami}`;
- let url = `http://10.81.3.154:8083/#/check?username=${getCookie(
- "username"
- )}&jiami=${jiami}`;
- window.open(url);
- return;
- } else if (data.id === "fdfx") {
- let jiami = encrypt(getCookie("jiami")).replace(/\+/g, " ");
- // let url = `http://192.168.1.117:3002/#/check?username=${getCookie(
- // "username"
- // )}&jiami=${jiami}`;
- let url = `http://10.81.3.155:8083/dlfx/#/check?username=${getCookie(
- "username"
- )}&jiami=${jiami}`;
- window.open(url);
- return;
- }
- this.activeIndex = index;
- this.$router.push(data.path);
- const ActiveModule = this.currMenu.find((ele) => {
- return ele.path === data.path;
- });
- if (ActiveModule) {
- this.$store.dispatch("changeModuleName", ActiveModule.text);
- }
- },
- clickSubMenu(index, code) {},
- clickMenu() {
- this.dropdown = !this.dropdown;
- },
- changeTheme() {
- $("#appBody").toggleClass("dark light");
- this.$store.dispatch("changeTheme", $("#appBody").attr("class"));
- this.$store.state.themeName === "dark" ?
- (this.themeName = false) :
- (this.themeName = true);
- localStorage.setItem("themeName", this.$store.state.themeName);
- },
- handleCommand(command) {
- if (command == "logout") {
- logout({
- token: getCookie("authToken"),
- userId: getCookie("userId"),
- }).then((res) => {
- this.$store.commit("user/REMOVE_TOKEN");
- this.$store.commit("changeStationAll", []);
- this.$router.push("/login");
- });
- }
- },
- // 跳转到管理系统
- goToAdmin() {
- let jiami = encrypt(getCookie("jiami")).replace(/\+/g, " ");
- // let url = `http://192.168.1.104:80/#/check?username=${getCookie(
- let url = `http://10.81.3.127:8083/#/check?username=${getCookie(
- "username"
- )}&jiami=${jiami}`;
- window.open(url);
- },
- },
- watch: {
- $route: {
- handler: function (val, oldVal) {
- if (this.currMenu.length) {
- this.currMenu.some((t, index) => {
- if (val.path.includes(t.id)) {
- this.activeIndex = index;
- const ActiveModule = this.currMenu.find((ele) => {
- return ele.path === t.path;
- });
- if (ActiveModule) {
- this.$store.dispatch("changeModuleName", ActiveModule.text);
- }
- }
- });
- }
- },
- //深度观察监听
- deep: true,
- },
- },
- };
- </script>
- <style>
- .admin-set-tooltip {
- font-size: 14px !important;
- }
- </style>
- <style lang="less" scoped>
- .header-menu {
- display: flex;
- width: 100%;
- height: 100%;
- font-size: @fontsize;
- justify-content: flex-end;
- .header-menu-list {
- margin: 0;
- padding: 0;
- list-style: none;
- display: flex;
- height: 100%;
- .header-menu-item {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 15px;
- // width: 9.259vh;
- height: 100%;
- color: @font-color;
- cursor: pointer;
- transition: color 0.2s ease-in-out;
- &.active {
- color: @green;
- position: relative;
- background: @greenLinearTop;
- transition: color 0.2s ease-in-out;
- &::after {
- content: "";
- position: absolute;
- width: 100%;
- height: 3px;
- border: 1px solid @green;
- border-top: 0;
- left: 0;
- bottom: 0;
- box-sizing: border-box;
- }
- }
- }
- }
- .header-menu-user {
- width: 10%;
- height: 100%;
- margin: 0;
- padding: 0;
- list-style: none;
- display: flex;
- align-items: center;
- .header-menu-user-title {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- color: @gray;
- cursor: pointer;
- i {
- margin: 0 5px;
- font-size: 16px;
- }
- .el-dropdown-link {
- color: #05bb4c;
- font-size: 16px;
- }
- }
- }
- }
- .warning {
- display: flex;
- align-items: center;
- color: #7a8385;
- }
- .dropdown {
- .el-dropdown-menu {
- background: #111d1c;
- border-radius: 3px;
- .el-dropdown-menu__item {
- color: #dfeef1;
- font-size: 14px !important;
- &:hover {
- color: #05bb4c;
- }
- }
- }
- }
- </style>
|