代码更新
This commit is contained in:
parent
a428ff5fb6
commit
de860012d5
@ -263,8 +263,24 @@ export default Vue.extend({
|
|||||||
return this.$route.path.includes('/homePage/index');
|
return this.$route.path.includes('/homePage/index');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.isNcmatchDomain; // 触发一次计算
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
// 首页跳转方法 - 根据域名判断跳转到不同的首页
|
||||||
|
goHome() {
|
||||||
|
|
||||||
|
|
||||||
|
if (this.isNcmatchDomain) {
|
||||||
|
this.$router.push('/ncmatchHome/index');
|
||||||
|
} else {
|
||||||
|
this.$router.push('/homePage/index');
|
||||||
|
}
|
||||||
|
},
|
||||||
// 处理AI助手点击
|
// 处理AI助手点击
|
||||||
handleAIClick() {
|
handleAIClick() {
|
||||||
this.$message.info({
|
this.$message.info({
|
||||||
@ -665,16 +681,6 @@ export default Vue.extend({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// 首页跳转方法 - 根据域名判断跳转到不同的首页
|
|
||||||
goHome() {
|
|
||||||
console.log('当前域名:', window.location.href);
|
|
||||||
|
|
||||||
if (this.isNcmatchDomain) {
|
|
||||||
this.$router.push('/ncmatchHome/index');
|
|
||||||
} else {
|
|
||||||
this.$router.push('/homePage/index');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user