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 71356d1..c9363d9 100644 --- a/f/web-kboss/src/views/homePage/components/topBox/index.vue +++ b/f/web-kboss/src/views/homePage/components/topBox/index.vue @@ -253,7 +253,7 @@ export default Vue.extend({ }, // 判断当前是否为ncmatch.cn域名 isNcmatchDomain() { - return window.location.hostname.includes('ncmatch.cn'); + return window.location.hostname.includes('ncmatch'); }, // 首页激活状态计算 isActiveHome() { @@ -667,10 +667,12 @@ export default Vue.extend({ // 首页跳转方法 - 根据域名判断跳转到不同的首页 goHome() { - console.log('当前域名:', this.getHomePath); + console.log('当前域名:',window.location.hostname); if (this.isNcmatchDomain) { - this.$router.push(this.getHomePath); + this.$router.push('/ncmatchHome/index'); + } else { + this.$router.push('/homePage/index'); } } },