美文网首页
上传文件时 弹窗只展示指定文件格式的文件 而不是所有文件

上传文件时 弹窗只展示指定文件格式的文件 而不是所有文件

作者: 南郭先生 | 来源:发表于2021-10-14 10:59 被阅读0次

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>

相关文章

网友评论

      本文标题:上传文件时 弹窗只展示指定文件格式的文件 而不是所有文件

      本文链接:https://www.haomeiwen.com/subject/jywyoltx.html