el-upload隐藏删除按钮
时间: 2023-10-03 18:02:38 浏览: 556
elemetUi 组件--el-upload实现上传Excel文件的实例
5星 · 资源好评率100%
你可以通过设置 `show-file-list` 属性为 `false` 来隐藏上传列表,然后通过 CSS 隐藏删除按钮。以下是一个示例:
```html
<el-upload
class="upload"
action="/upload"
:show-file-list="false"
>
<el-button slot="trigger" type="primary">上传文件</el-button>
</el-upload>
```
```css
.upload .el-upload-list__item .el-upload-list__item-status + .el-upload-list__item-actions {
display: none;
}
```
这个 CSS 样式选择器选择上传列表中的每个项目中的删除按钮,并将其隐藏。
阅读全文