feat: 大屏路由导航调整

This commit is contained in:
Tony 2023-10-25 14:46:51 +08:00
parent 32fa7937b4
commit 726824570d

View File

@ -96,7 +96,18 @@ export default {
}).catch(() => {});
},
handleBigscreen() {
this.$router.push('/bigscreen')
let port = window.location.port;
switch (port) {
case '130':
this.$router.push('/bigscreen')
break;
case '140':
this.$router.push('/bigscreen1')
break;
default:
this.$router.push('/bigscreen')
break;
}
}
}
}