|
@@ -64,7 +64,7 @@
|
|
|
aria-label aria-description="You've reached the pop-up window section; this section contains four URLs; please use the tab key to go through the content."
|
|
|
>
|
|
|
<div
|
|
|
- class="t1" @click="$router.replace('/Layout/Visit/2')"
|
|
|
+ class="t1" @click="$router.push('/Layout/Visit/2')"
|
|
|
tabindex="0"
|
|
|
aria-label="Link"
|
|
|
aria-description="Reservation"
|
|
@@ -93,7 +93,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="t2" @click="$router.replace('/Layout/Visit/1')"
|
|
|
+ <div class="t2" @click="$router.push('/Layout/Visit/1')"
|
|
|
tabindex="0"
|
|
|
aria-label="Link"
|
|
|
aria-description="Visit Info"
|
|
@@ -141,7 +141,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="t4" @click="$router.replace('/Layout/Events')"
|
|
|
+ <div class="t4" @click="$router.push('/Layout/Events')"
|
|
|
tabindex="0"
|
|
|
aria-label="Link"
|
|
|
aria-description="Events"
|
|
@@ -183,7 +183,7 @@ export default {
|
|
|
methods: {
|
|
|
// 底部的跳转
|
|
|
botskip() {
|
|
|
- this.$router.replace("/Layout/About").catch(() => {});
|
|
|
+ this.$router.push("/Layout/About").catch(() => {});
|
|
|
setTimeout(() => {
|
|
|
window.scrollTo({ top: 1307, behavior: "smooth" });
|
|
|
}, 100);
|