文件下载功能的前台页面的展现
Posted 雅涵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件下载功能的前台页面的展现相关的知识,希望对你有一定的参考价值。
首先在.vue文件里将样式给写好
<a style="margin-left: 55px; cursor: pointer;" @click="popExcel" > <i class="glyphicon glyphicon-download-alt" title="下载"></i> 导出获奖列表信息 </a>
下载的功能后台已经都已经写好的,所以只要展现一下就可以了,
直接写个方法就行了,
`
excel(date){//导出某天获奖列表到excel
api.getExportAwardExcel(this.date, this.kId)
.then(res => {
this.$refs.dialog3.close()
if (this.kId === null) {//测试环境
window.location.href = ‘https://lab.yoosh.tv/mgmt/export/exportAwardExcel?date=‘ + this.date
}else{
window.location.href = ‘https://lab.yoosh.tv/mgmt/export/exportAwardExcel?date=‘ + this.date + ‘&kId=‘ + this.kId
}
if (res.data.ok) {
console.log(res.data)
}
}).catch(err => {
alert(err)
})
},
` 很多时候其实是一个很简单的功能,所以就不需要搞得太复杂化,简单点。
以上是关于文件下载功能的前台页面的展现的主要内容,如果未能解决你的问题,请参考以下文章
Bootstrap主要是做前台页面吗?它有一般cms那样的后台管理功能吗?做出来的页面更新和维护是在源文件里...
opencart 换了模版之后前台页面运行很慢?急!!!!!!!!!!!
《项目经验》--通过js获取前台数据向一般处理程序传递Json数据,并解析Json数据,将前台传来的Json数据写入数据库表中