|
@@ -8,7 +8,7 @@
|
|
|
<div class="header-line">
|
|
|
<h3>通知公告</h3>
|
|
|
<span>NOTICE</span>
|
|
|
- <a href="./notices.html" class="view-more">查看更多</a>
|
|
|
+ <a class="view-more" @click="goNotice">查看更多</a>
|
|
|
</div>
|
|
|
|
|
|
<div class="notices-box">
|
|
@@ -29,7 +29,7 @@
|
|
|
<div class="container">
|
|
|
<div class="header-line">
|
|
|
<h3>评审活动</h3> <span>ACTIVITY</span> <div class="more">
|
|
|
- <a href="./activity.html" class="view-more">查看更多</a> <span class="count">
|
|
|
+ <a class="view-more" @click="goActivity">查看更多</a> <span class="count">
|
|
|
<b style="color: rgb(83, 199, 102);">2</b>个活动进行中
|
|
|
</span>
|
|
|
</div>
|
|
@@ -106,6 +106,14 @@
|
|
|
handleActivityClick() {
|
|
|
this.$router.push('/activityDetails');
|
|
|
this.$eventBus.$emit("activeIndex", 2);
|
|
|
+ },
|
|
|
+ goNotice() {
|
|
|
+ this.$router.push('/notice');
|
|
|
+ this.$eventBus.$emit("activeIndex", 1);
|
|
|
+ },
|
|
|
+ goActivity() {
|
|
|
+ this.$router.push('/reviewActivity');
|
|
|
+ this.$eventBus.$emit("activeIndex", 2);
|
|
|
}
|
|
|
|
|
|
},
|