html:(fileList自己写)
<span v-for="item in fileList" :key="item.id">
<p>
<span class="downFileNme" >{
{item.name}}</span>
<el-button size="mini" round @click="down(item)" type="primary" plain>下载</el-button>
</p>
</span>
methods:
//下载附件
down(item) {
let that = this;
axios({
url: 'xxx',
method: 'xxx',
data: {xxx},
responseType: 'blob', // 服务器返回的数据类型
}).then(function (res) {
try {