更新页面

This commit is contained in:
2023-07-02 11:56:43 +08:00
parent 1bca584178
commit 12d9b1f411
3 changed files with 23 additions and 2 deletions

View File

@@ -64,7 +64,7 @@
<br/><br/>
</div>
<br/>
<el-button type="info" @click="getProjectNum()">阅读该期</el-button>
<el-button type="info" @click="getMonely()">阅读该期</el-button>
<br/><br/>
</el-card>
</el-col>
@@ -110,7 +110,7 @@
<span style="font-size:18px;font-weight:540;color: #676767">欢迎推荐和自荐项目</span>
<br/><br/>
</div>
<el-button type="info" style="margin-top:37px">推荐项目</el-button>
<el-button type="info" @click="getProjectNum()" style="margin-top:37px">推荐项目</el-button>
<br/><br/>
</el-card>
</el-col>

View File

@@ -0,0 +1,15 @@
<template>
<div>
sssss
</div>
</template>
<script>
export default {
name: "MonthlyDetailComponent"
}
</script>
<style scoped>
</style>

View File

@@ -5,6 +5,7 @@ import home from "@/components/Home/Home.vue";
import monthly from "@/components/Monthly.vue";
import ranking from "@/components/Ranking.vue";
import paper from "@/components/Paper.vue";
import MonthlyDetail from "@/components/MonthlyDetail.vue";
Vue.use(VueRouter)
@@ -39,6 +40,11 @@ const routes = [
name: 'paper',
component: paper
},
{
path: '/MonthlyDetail',
name: 'MonthlyDetail',
component: MonthlyDetail
}
]
}