|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="top-nav">
|
|
|
- <div class="log">PromoCollection</div>
|
|
|
+ <div class="log">PromoCatalogue</div>
|
|
|
<el-menu
|
|
|
:text-color="variables.TopText"
|
|
|
:active-text-color="variables.TopText"
|
|
@@ -97,7 +97,7 @@ export default {
|
|
|
// 如果是首页,首页高亮
|
|
|
// path=='/'时,暂固定取一级路由为memberMerchandise,问题同leftSide.vue
|
|
|
if (path === '/') {
|
|
|
- return '/memberMerchandise'
|
|
|
+ return '/shop'
|
|
|
}
|
|
|
// 如果不是首页,高亮一级菜单
|
|
|
return '/' + path.split('/')[1]
|
|
@@ -120,7 +120,7 @@ export default {
|
|
|
let route = this.routes.find((item) => item.path === temp)
|
|
|
// 如果找不到这个路由,说明是首页/memberMerchandise
|
|
|
if (!route) {
|
|
|
- route = this.routes.find((item) => item.path === '/memberMerchandise')
|
|
|
+ route = this.routes.find((item) => item.path === '/shop')
|
|
|
}
|
|
|
this.$store.commit('firstRoutes/SET_CURRENT_ROUTES', route)
|
|
|
// this.setSidebarHide(route)
|