<el-upload
ref="upload"
:limit="limit"
:auto-upload="false"
:on-exceed="handleExceed"
:file-list="filelist"
:on-change="handleChansge"
:on-remove="removeFile"
name="file"
action="接口地址"
accept=".xls,.xlsx"
>
<el-button slot="trigger" size="small" type="primary">选取文件</el-button>
<el-button
:disabled="btn.disable"
style="margin-left: 10px;"
size="small"
type="success"
@click="postfile"
>{
{ btn.message }}</el-button>
<div slot="tip" class="el-upload__tip">上传文件只能为excel文件,且为xlsx,xls格式</div>
</el-upload>
data() {
return {
file: '',
filename: '',
filelist: [],
limit: 1,
errmesg: [],
btn: {
disable: false,
message: '上传模板'
},
}
}
handleEx