Compare commits

..

2 Commits

Author SHA1 Message Date
9f3e5c6bbf Merge pull request '代码更新' (#82) from main into prod
Reviewed-on: #82
2026-03-27 15:06:47 +08:00
hrx
de860012d5 代码更新 2026-03-27 15:06:19 +08:00

View File

@ -264,7 +264,23 @@ export default Vue.extend({
}
}
},
mounted() {
this.$nextTick(() => {
this.isNcmatchDomain; //
});
},
methods: {
// -
goHome() {
if (this.isNcmatchDomain) {
this.$router.push('/ncmatchHome/index');
} else {
this.$router.push('/homePage/index');
}
},
// AI
handleAIClick() {
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>