南昌市物联网技防平台-前端
shuishen
2021-04-08 2dddbd1af47251edbc86db54622cb33ec60e5e01
项目顶部修改
2 files modified
181 ■■■■■ changed files
src/page/index/top/index.vue 114 ●●●●● patch | view | raw | blame | history
src/page/index/top/top-menu.vue 67 ●●●● patch | view | raw | blame | history
src/page/index/top/index.vue
@@ -1,16 +1,16 @@
<template>
  <div class="avue-top">
    <div class="top-bar__left">
      <div class="avue-breadcrumb"
      <div
        class="avue-breadcrumb"
           :class="[{ 'avue-breadcrumb--active': isCollapse }]"
           v-if="showCollapse">
        <i class="icon-navicon"
           @click="setCollapse"></i>
        v-if="showCollapse"
      >
        <i class="icon-navicon" @click="setCollapse"></i>
      </div>
    </div>
    <div class="top-bar__title">
      <div class="top-bar__item top-bar__item--show"
           v-if="showMenu">
      <div class="top-bar__item top-bar__item--show" v-if="showMenu">
        <top-menu ref="topMenu"></top-menu>
      </div>
      <!--去除顶部搜索栏-->
@@ -20,36 +20,47 @@
<!--      </span>-->
    </div>
    <div class="top-bar__right">
      <img src="/img/ydlg.png" style="height: 44px; vertical-align: middle;" alt="">
      <el-tooltip v-if="showColor"
      <img
        src="/img/ydlg.png"
        style="height: 44px; vertical-align: middle"
        alt=""
      />
      <el-tooltip
        v-if="showColor"
                  effect="dark"
                  :content="$t('navbar.color')"
                  placement="bottom">
        placement="bottom"
      >
        <div class="top-bar__item">
          <top-color></top-color>
        </div>
      </el-tooltip>
      <el-tooltip v-if="showDebug"
      <el-tooltip
        v-if="showDebug"
                  effect="dark"
                  :content="logsFlag?$t('navbar.bug'):logsLen+$t('navbar.bugs')"
                  placement="bottom">
        placement="bottom"
      >
        <div class="top-bar__item">
          <top-logs></top-logs>
        </div>
      </el-tooltip>
      <el-tooltip v-if="showLock"
      <el-tooltip
        v-if="showLock"
                  effect="dark"
                  :content="$t('navbar.lock')"
                  placement="bottom">
        placement="bottom"
      >
        <div class="top-bar__item">
          <top-lock></top-lock>
        </div>
      </el-tooltip>
      <el-tooltip v-if="showTheme"
      <el-tooltip
        v-if="showTheme"
                  effect="dark"
                  :content="$t('navbar.theme')"
                  placement="bottom">
        placement="bottom"
      >
        <div class="top-bar__item top-bar__item--show">
          <top-theme></top-theme>
        </div>
@@ -61,24 +72,31 @@
<!--          <top-notice></top-notice>-->
<!--        </div>-->
<!--      </el-tooltip>-->
      <el-tooltip effect="dark"
      <el-tooltip
        effect="dark"
                  :content="$t('navbar.language')"
                  placement="bottom">
        placement="bottom"
      >
        <div class="top-bar__item top-bar__item--show">
          <top-lang></top-lang>
        </div>
      </el-tooltip>
      <el-tooltip v-if="showFullScren"
      <el-tooltip
        v-if="showFullScren"
                  effect="dark"
                  :content="isFullScren?$t('navbar.screenfullF'):$t('navbar.screenfull')"
                  placement="bottom">
        :content="
          isFullScren ? $t('navbar.screenfullF') : $t('navbar.screenfull')
        "
        placement="bottom"
      >
        <div class="top-bar__item">
          <i :class="isFullScren?'icon-tuichuquanping':'icon-quanping'"
             @click="handleScreen"></i>
          <i
            :class="isFullScren ? 'icon-tuichuquanping' : 'icon-quanping'"
            @click="handleScreen"
          ></i>
        </div>
      </el-tooltip>
      <img class="top-bar__img"
           :src="userInfo.avatar">
      <img class="top-bar__img" :src="userInfo.avatar" />
      <el-dropdown>
        <span class="el-dropdown-link">
          {{userInfo.userName}}
@@ -86,13 +104,15 @@
        </span>
        <el-dropdown-menu slot="dropdown">
          <el-dropdown-item>
            <router-link to="/">{{$t('navbar.dashboard')}}</router-link>
            <router-link to="/">{{ $t("navbar.dashboard") }}</router-link>
          </el-dropdown-item>
          <el-dropdown-item>
            <router-link to="/info/index">{{$t('navbar.userinfo')}}</router-link>
            <router-link to="/info/index">{{
              $t("navbar.userinfo")
            }}</router-link>
          </el-dropdown-item>
          <el-dropdown-item @click.native="logout"
                            divided>{{$t('navbar.logOut')}}
          <el-dropdown-item @click.native="logout" divided
            >{{ $t("navbar.logOut") }}
          </el-dropdown-item>
        </el-dropdown-menu>
      </el-dropdown>
@@ -100,7 +120,7 @@
  </div>
</template>
<script>
  import {resetRouter} from '@/router/router'
import { resetRouter } from "@/router/router";
  import {mapGetters, mapState} from "vuex";
  import {fullscreenToggel, listenfullscreen} from "@/util/util";
  import topLock from "./top-lock";
@@ -109,7 +129,7 @@
  import topTheme from "./top-theme";
  import topLogs from "./top-logs";
  import topColor from "./top-color";
  import topNotice from './top-notice'
import topNotice from "./top-notice";
  import topLang from "./top-lang";
  export default {
@@ -121,28 +141,27 @@
      topLogs,
      topColor,
      topNotice,
      topLang
    topLang,
    },
    name: "top",
    data() {
      return {};
    },
    filters: {},
    created() {
    },
  created() {},
    mounted() {
      listenfullscreen(this.setScreen);
    },
    computed: {
      ...mapState({
        showDebug: state => state.common.showDebug,
        showTheme: state => state.common.showTheme,
        showLock: state => state.common.showLock,
        showFullScren: state => state.common.showFullScren,
        showCollapse: state => state.common.showCollapse,
        showSearch: state => state.common.showSearch,
        showMenu: state => state.common.showMenu,
        showColor: state => state.common.showColor
      showDebug: (state) => state.common.showDebug,
      showTheme: (state) => state.common.showTheme,
      showLock: (state) => state.common.showLock,
      showFullScren: (state) => state.common.showFullScren,
      showCollapse: (state) => state.common.showCollapse,
      showSearch: (state) => state.common.showSearch,
      showMenu: (state) => state.common.showMenu,
      showColor: (state) => state.common.showColor,
      }),
      ...mapGetters([
        "userInfo",
@@ -152,8 +171,8 @@
        "isCollapse",
        "tag",
        "logsLen",
        "logsFlag"
      ])
      "logsFlag",
    ]),
    },
    methods: {
      handleScreen() {
@@ -169,9 +188,8 @@
        this.$confirm(this.$t("logoutTip"), this.$t("tip"), {
          confirmButtonText: this.$t("submitText"),
          cancelButtonText: this.$t("cancelText"),
          type: "warning"
        type: "warning",
        }).then(() => {
          //关闭webSocket
          window.socket.close();
          //关闭报警循环
@@ -184,8 +202,8 @@
            this.$router.push({path: "/login"});
          });
        });
      }
    }
    },
  },
  };
</script>
src/page/index/top/top-menu.vue
@@ -1,12 +1,19 @@
<template>
  <div class="top-menu">
    <el-menu :default-active="activeIndex"
             mode="horizontal"
             text-color="#333">
      <el-menu-item index="0" @click.native="openHome(itemHome)" key="0">
    <el-menu :default-active="activeIndex" mode="horizontal" text-color="#333">
      <el-menu-item index="0" @click.native="openHome(dataItem)" key="0">
        <template slot="title">
          <i :class="itemHome.source"></i>
          <span>{{generateTitle(itemHome)}}</span>
          <i :class="dataItem.source" :title="dataItem.name"></i>
        </template>
      </el-menu-item>
      <el-menu-item index="1" @click.native="openHome(mapItem)" key="0">
        <template slot="title">
          <i :class="mapItem.source" :title="mapItem.name"></i>
        </template>
      </el-menu-item>
      <el-menu-item index="2" @click.native="openHome(cardItem)" key="0">
        <template slot="title">
          <i :class="cardItem.source" :title="cardItem.name"></i>
        </template>
      </el-menu-item>
<!--      <el-menu-item index="0" @click.native="openHomes(ZHAJ)" key="0">-->
@@ -16,9 +23,13 @@
<!--        </template>-->
<!--      </el-menu-item>-->
      <template v-for="(item,index) in items">
        <el-menu-item :index="item.id+''" @click.native="openMenu(item)" :key="index">
        <el-menu-item
          :index="item.id + ''"
          @click.native="openMenu(item)"
          :key="index"
        >
          <template slot="title">
            <i :class="item.source" style="padding-right: 5px;"></i>
            <i :class="item.source" style="padding-right: 5px"></i>
            <span>{{generateTitle(item)}}</span>
          </template>
        </el-menu-item>
@@ -34,13 +45,24 @@
    name: "top-menu",
    data() {
      return {
        itemHome: {
          name: '数据模式',
          source: 'el-icon-menu',
      dataItem: {
        name: "数据模式",
        source: "el-icon-s-data",
        path: "/wel/index",
      },
      mapItem: {
        name: "地图模式",
        source: "el-icon-location",
        path: "/welcomeData/map",
      },
      cardItem: {
        name: "卡片模式",
        source: "el-icon-menu",
        path: "/welcomeData/card",
        },
        ZHAJ: {
          name: '智慧安检',
          source: 'icon-anbao',
        name: "智慧安检",
        source: "icon-anbao",
        },
        activeIndex: "0",
        items: [],
@@ -51,26 +73,33 @@
      this.getMenu();
    },
    computed: {
      ...mapGetters(["tagCurrent", "menu"])
    ...mapGetters(["tagCurrent", "menu"]),
    },
    methods: {
      openHome(itemHome) {
        this.index.openMenu(itemHome);
        this.$router.push({
          path: this.$router.$avueRouter.getPath({name: itemHome.name, src: ''}, {})
        path: itemHome.path,
        });
      },
      openHomes(itemHome) {
        this.index.openMenu(itemHome);
        this.$router.push({
          path: this.$router.$avueRouter.getPath({name: itemHome.name, src: 'https://cas.sf-express.com/cas/login?service=http://fengkong.sf-express.com/backstageprd/#/homeInfo/infoOverview'}, {})
        path: this.$router.$avueRouter.getPath(
          {
            name: itemHome.name,
            src:
              "https://cas.sf-express.com/cas/login?service=http://fengkong.sf-express.com/backstageprd/#/homeInfo/infoOverview",
          },
          {}
        ),
        });
      },
      openMenu(item) {
        this.index.openMenu(item)
      this.index.openMenu(item);
      },
      getMenu() {
        this.$store.dispatch("GetTopMenu").then(res => {
      this.$store.dispatch("GetTopMenu").then((res) => {
          this.items = res;
        });
      },
@@ -80,6 +109,6 @@
          (item.meta || {}).i18n
        );
      },
    }
  },
  };
</script>