点击button- downloadFile可以下载文件,其中this.form.file是文件名
downloadFile: function() {
this.$notify({
message: '正在下载~',
type: 'success'
})
const a = document.createElement('a')
a.href = 'http://localhost:8080/file/download?fileName=' + this.form.file
console.log('a.href=', a.href)
a.click()
},