首先在html里面写入upload的框架
accept参数是限制类型我这里是限制了.xls,.xlsx类型
<el-upload
class="upload-demo"
accept=".xls, .xlsx"
:limit="limitNum"
:auto-upload="false"
:action="UploadUrl()"
:file-list="fileList"
:before-upload="beforeUploadFile"
:on-change="fileChange"
:on-success="fileSuccess"
:on-error="fileError"
:on-exceed="handleExceed"
:show-file-list="false"
multiple
>
<el-button
size="small"
type="primary"
icon="el-icon-circle-plus-outline"
>新增导入</el