|
@@ -2,25 +2,28 @@
|
|
<nav class="client-head">
|
|
<nav class="client-head">
|
|
<div class="client-container head-layout">
|
|
<div class="client-container head-layout">
|
|
<div class="head-left">
|
|
<div class="head-left">
|
|
- <a></a>
|
|
|
|
|
|
+ <a>
|
|
|
|
+ <i></i>
|
|
|
|
+ </a>
|
|
<el-menu
|
|
<el-menu
|
|
:default-active="activeIndex"
|
|
:default-active="activeIndex"
|
|
class="el-menu-demo"
|
|
class="el-menu-demo"
|
|
mode="horizontal"
|
|
mode="horizontal"
|
|
- :router="true"
|
|
|
|
|
|
+ :router="false"
|
|
>
|
|
>
|
|
<template v-for="(item,index) in headerArr">
|
|
<template v-for="(item,index) in headerArr">
|
|
<el-submenu :index="`${item.keyPath}`" v-if="item.children && item.children.length > 0"
|
|
<el-submenu :index="`${item.keyPath}`" v-if="item.children && item.children.length > 0"
|
|
popper-class="mta-menu-two">
|
|
popper-class="mta-menu-two">
|
|
<template slot="title">{{item.content}}</template>
|
|
<template slot="title">{{item.content}}</template>
|
|
<el-menu-item :index="`${child.keyPath}`" v-for="child of item.children"
|
|
<el-menu-item :index="`${child.keyPath}`" v-for="child of item.children"
|
|
- :key="child.keyPath">{{child.content}}
|
|
|
|
|
|
+ :key="child.keyPath">
|
|
|
|
+ <a :href="`https://www.mtavip.com${child.keyPath}`">{{child.content}}</a>
|
|
</el-menu-item>
|
|
</el-menu-item>
|
|
</el-submenu>
|
|
</el-submenu>
|
|
|
|
|
|
-
|
|
|
|
<el-menu-item :index="`${item.keyPath}`" v-else>
|
|
<el-menu-item :index="`${item.keyPath}`" v-else>
|
|
- {{item.content}}
|
|
|
|
|
|
+
|
|
|
|
+ <a :href="`https://www.mtavip.com${item.keyPath}`">{{item.content}}</a>
|
|
</el-menu-item>
|
|
</el-menu-item>
|
|
</template>
|
|
</template>
|
|
</el-menu>
|
|
</el-menu>
|