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
| <template>
| <div class="top-menu">
| <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="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">-->
| <!-- <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 } from "vuex";
|
| export default {
| name: "top-menu",
| data() {
| return {
| 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",
| },
| activeIndex: "0",
| items: [],
| };
| },
| inject: ["index"],
| created() {
| this.getMenu();
| },
| computed: {
| ...mapGetters(["tagCurrent", "menu"]),
| },
| methods: {
| openHome(itemHome) {
| this.index.openMenu(itemHome);
| 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>
|
|