vue+element-ui
一般上传文件时,弹出的弹窗展示的都是所有文件,有时需求要求只展示excel的文件或者只展示图片,
只需要设置
<el-upload accept=".xls,.xlsx" :on-error="importDetailError" :on-success="importDetailSuccess" :show-file-list="false" class="apply-import-button" :action="importDetailUrl" multiple="false" :headers="headers">
<el-button type="primary">导入</el-button>
</el-upload>
网友评论