diff --git a/f/web-kboss/src/views/homePage/components/topBox/index.vue b/f/web-kboss/src/views/homePage/components/topBox/index.vue index 8c5077e..535b6b4 100644 --- a/f/web-kboss/src/views/homePage/components/topBox/index.vue +++ b/f/web-kboss/src/views/homePage/components/topBox/index.vue @@ -253,12 +253,12 @@ export default Vue.extend({ }, // 判断当前是否为ncmatch.cn域名 isNcmatchDomain() { - return window.location.hostname.includes('www.ncmatch.cn'); + return window.location.hostname.includes('ncmatch.cn'); }, // 首页激活状态计算 isActiveHome() { if (this.isNcmatchDomain) { - return this.$route.path.includes('/ncmatchHomeindex'); + return this.$route.path.includes('/ncmatchHome/index'); } else { return this.$route.path.includes('/homePage/index'); }