zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<template>
  <div class="top-menu">
    <el-menu :default-active="activeIndex" mode="horizontal" text-color="#333">
      <el-menu-item index="0" @click.native="openHome(homeItem)" key="0" v-if="!hideHome">
        <template slot="title">
          <i
            style="font-size: 20px !important"
            :class="homeItem.source"
            :title="homeItem.name"
          ></i>
        </template>
      </el-menu-item>
      <el-menu-item
        index="1"
        @click.native="openHome(dataItem)"
        key="0"
        v-if="showMenu"
      >
        <template slot="title">
          <i
            style="font-size: 20px !important"
            :class="dataItem.source"
            :title="dataItem.name"
          ></i>
        </template>
      </el-menu-item>
      <el-menu-item
        index="2"
        @click.native="openHome(mapItem)"
        key="0"
        v-if="showMenu"
      >
        <template slot="title">
          <i
            style="font-size: 20px !important"
            :class="mapItem.source"
            :title="mapItem.name"
          ></i>
        </template>
      </el-menu-item>
      <el-menu-item
        index="3"
        @click.native="openHome(cardItem)"
        key="0"
        v-if="showMenu"
      >
        <template slot="title">
          <i
            style="font-size: 20px !important"
            :class="cardItem.source"
            :title="cardItem.name"
          ></i>
        </template>
      </el-menu-item>
      <!--      <el-menu-item index="0" @click.native="openHomes(ZHAJ)" key="0">-->
      <!--        <template slot="title">-->
      <!--          <i :class="ZHAJ.source"></i>-->
      <!--          <span>{{generateTitle(ZHAJ)}}</span>-->
      <!--        </template>-->
      <!--      </el-menu-item>-->
      <template v-for="(item, index) in items">
        <el-menu-item
          :index="item.id + ''"
          @click.native="openMenu(item)"
          :key="index"
        >
          <template slot="title">
            <i :class="item.source" style="padding-right: 5px"></i>
            <span>{{ generateTitle(item) }}</span>
          </template>
        </el-menu-item>
      </template>
    </el-menu>
  </div>
</template>
 
<script>
import { mapGetters, mapState } from "vuex";
 
export default {
  name: "top-menu",
  data() {
    return {
      homeItem: {
        name: "首页",
        source: "el-icon-s-home",
        path: "/wel/index",
      },
      dataItem: {
        name: "数据模式",
        source: "el-icon-s-data",
        path: "/welcomeData/data",
      },
      mapItem: {
        name: "地图模式",
        source: "el-icon-location",
        path: "/welcomeData/map",
      },
      cardItem: {
        name: "卡片模式",
        source: "el-icon-menu",
        path: "/welcomeData/card",
      },
      ZHAJ: {
        name: "智慧安检",
        source: "icon-anbao",
      },
      activeIndex: "0",
      items: [],
    };
  },
  inject: ["index"],
  created() {
    this.getMenu();
  },
  computed: {
    ...mapState({
      showMenu: (state) => state.dataL.showdataL,
    }),
    ...mapGetters(["tagCurrent", "menu", "hideHome"]),
  },
  methods: {
    openHome(itemHome) {
      this.index.openMenu(itemHome);
      this.$store.state.common.liuState++;
      this.$router.push({
        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",
          },
          {}
        ),
      });
    },
    openMenu(item) {
      this.index.openMenu(item);
    },
    getMenu() {
      this.$store.dispatch("GetTopMenu").then((res) => {
        this.items = res;
      });
    },
    generateTitle(item) {
      return this.$router.$avueRouter.generateTitle(
        item.name,
        (item.meta || {}).i18n
      );
    },
  },
};
</script>