【修改】 首页增加下载 用户手册

This commit is contained in:
fengachen
2022-01-10 14:52:46 +08:00
parent bae2b71ae5
commit bb3769d09e
+16
View File
@@ -128,6 +128,9 @@
<!-- </a-card>-->
<!-- </div>-->
<user-announcement-list :is-show-seach="true"></user-announcement-list>
<div class="download">
点击下载<span class="primary-color" @click="downloadManual">管理端使用手册</span>
</div>
</div>
</template>
@@ -220,6 +223,10 @@ export default {
// })
},
methods: {
// 下载使用手册
downloadManual(){
window.open('http://cwp.catarc.org.cn:8066/管理端使用手册.docx')
},
getStatisticsData() {
return new Promise(resolve => {
homePageStatistics().then(res => {
@@ -552,4 +559,13 @@ export default {
}
}
}
.download {
margin-top: 8px;
font-size: 16px;
text-align: center;
}
.primary-color {
color:#069F99;
cursor: pointer;
}
</style>