You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

256 lines
5.4 KiB
Vue

7 months ago
<template>
<div class="menu">
7 months ago
<div v-for="(i,k) in menuList" :class="`menuItem ${k === -1 ? 'focus':''}`" @mouseenter="getChildren(i)">
7 months ago
<div :class="`name `" @click="toLink(i.path)">{{ i.name }}</div>
<div class="line"></div>
</div>
<div class="subMenu" v-if="(subMenuList||[]).length>0" @mouseleave="clearChildren">
6 months ago
<div :class="`topMenuItem${k===-1 ? ' active':''}`" v-for="(ii,k) in subMenuList" @click="toLink(ii.path)">
7 months ago
<div class="icon">
<img :src="ii.icon" alt="" style="width: 1.8vw;height: 1.8vw;object-fit: contain">
</div>
<div class="menuChildrenName">
<span>
{{ ii.name }}
</span>
</div>
</div>
</div>
</div>
</template>
<script>
import wlw from "@/assets/icon/wlw.png";
import znzz from "@/assets/icon/znzz.png";
import kdwl from "@/assets/icon/kdwl.png";
import znlt from "@/assets/icon/znlt.png";
6 months ago
import {getPortalConfigTypeList} from "@/api/menu";
7 months ago
export default {
name: 'Index',
data() {
return {
menuList: [
{
name: '首页',
7 months ago
path: '/index'
7 months ago
},
{
name: '产品中心',
children: [
{
name: '工业互联网',
icon: wlw,
7 months ago
path: '/productCenter/industrialInternet'
7 months ago
},
{
name: '智能制造',
icon: znzz,
path: '/'
},
{
name: '快递物流',
icon: kdwl,
path: '/'
},
{
name: '智能轮胎',
icon: znlt,
path: '/'
},
]
},
{
name: '案例与客户',
children: [
{
name: '工业物联网案例',
icon: wlw,
7 months ago
path: '/casesAndClients/IOT'
7 months ago
},
{
name: '智能制造案例',
icon: znzz,
path: '/'
},
{
name: '快递物流案例',
icon: kdwl,
path: '/'
},
{
name: '智能轮胎案例',
icon: znlt,
path: '/'
},
{
name: '合作客户',
icon: znlt,
path: '/'
},
]
},
6 months ago
// {
// name: '新闻中心',
// path: '/newsCenter'
// },
7 months ago
{
name: '关于我们',
7 months ago
path: '/contactUs'
7 months ago
},
],
7 months ago
subMenuList: [],
firstMenu: '',
secondMenu: '',
7 months ago
}
},
mounted() {
6 months ago
this.getMenu()
7 months ago
let query = this.$route.path
7 months ago
console.log(this.$route.path.split("/"))
7 months ago
},
methods: {
toLink(e) {
6 months ago
if (!e) return
7 months ago
this.$router.push(e)
},
getChildren(e) {
if (e.children) {
this.subMenuList = e.children
} else {
this.subMenuList = []
}
},
clearChildren() {
this.subMenuList = []
6 months ago
},
getMenu() {
getPortalConfigTypeList({
configTypeClassfication: 1,
parentId: 0,
pageNum: 1,
pageSize: 111
}).then(e => {
console.log(e)
this.menuList[1].children = e.rows.map(v => {
return {
name: v.configTypeName,
icon: v.configTypeIcon,
path: '/productCenter/industrialInternet?portalConfigTypeId='+v.configTypeId
}
})
})
getPortalConfigTypeList({
configTypeClassfication: 2,
parentId: 0,
pageNum: 1,
pageSize: 111
}).then(e => {
console.log(e)
this.menuList[2].children = e.rows.map(v => {
return {
name: v.configTypeName,
icon: v.configTypeIcon,
path: '/casesAndClients/IOT?portalConfigTypeId='+v.configTypeId
}
})
6 months ago
})
7 months ago
}
}
}
</script>
<style lang="less" scoped>
@import "~@/style.less";
.menu {
position: relative;
.focus, .menuItem:hover {
font-weight: 700;
color: #3076f8;
background-color: #ebf1ff;
.line {
width: 100%;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
background-color: #3076f8;
}
}
.menuItem {
//width: 120px;
padding: 0 2vw;
position: relative;
display: inline-block;
cursor: pointer;
transition: all 0.2s;
.name {
line-height: @top-height;
font-size: 1vw;
letter-spacing: 2px;
}
}
.subMenu {
position: absolute;
width: 100vw;
left: 50%;
transform: translateX(-50%);
height: @menuHeight;
display: flex;
justify-content: center;
background-color: #fff;
z-index: -1;
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.04);
.topMenuItem.active, .topMenuItem:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
.menuChildrenName {
color: @standard-color;
}
}
.topMenuItem {
width: @menuHeight;
height: @menuHeight;
transition: all 0.2s;
.icon {
width: 100%;
height: 36%;
margin-top: 22%;
display: flex;
align-items: center;
justify-content: center;
}
.menuName {
height: 20%;
font-size: 0.9vw;
color: #111;
letter-spacing: 1px;
display: flex;
align-items: center;
justify-content: center;
}
}
}
}
@menuHeight: 11vw;
</style>