|
@@ -169,18 +169,26 @@
|
|
|
:key="third.MenuId"
|
|
|
v-for="third in second.children"
|
|
|
>
|
|
|
- <span
|
|
|
- style="
|
|
|
- display: inline-block;
|
|
|
- width: 96px;
|
|
|
- text-align: left;
|
|
|
- font-size: 15px;
|
|
|
- margin-left:40px
|
|
|
- "
|
|
|
- >{{
|
|
|
- $i18nt.locale === "zh" ? third.name : third.name_en
|
|
|
- }}</span
|
|
|
+ <a
|
|
|
+ :href="`${prefixPath}${third.path}`"
|
|
|
+ :style="`display: flex;align-items:center;color:${
|
|
|
+ third.path === activePath ? $setting.theme_color : '#666'
|
|
|
+ }`"
|
|
|
+ @click="handleClickSubMenuItem(third,$event)"
|
|
|
>
|
|
|
+ <span
|
|
|
+ style="
|
|
|
+ display: inline-block;
|
|
|
+ width: 96px;
|
|
|
+ text-align: left;
|
|
|
+ font-size: 15px;
|
|
|
+ margin-left:40px
|
|
|
+ "
|
|
|
+ >{{
|
|
|
+ $i18nt.locale === "zh" ? third.name : third.name_en
|
|
|
+ }}</span
|
|
|
+ >
|
|
|
+ </a>
|
|
|
</el-menu-item>
|
|
|
</el-submenu>
|
|
|
</template>
|