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 535b6b4..17871f1 100644 --- a/f/web-kboss/src/views/homePage/components/topBox/index.vue +++ b/f/web-kboss/src/views/homePage/components/topBox/index.vue @@ -667,8 +667,10 @@ export default Vue.extend({ // 首页跳转方法 - 根据域名判断跳转到不同的首页 goHome() { + console.log('当前域名:', window.location.href); + if (this.isNcmatchDomain) { - this.$router.push('/ncmatchHome'); + this.$router.push('/ncmatchHome/index'); } else { this.$router.push('/homePage/index'); }