Upload: remove delete icon when disabled

pull/6127/head
Leopoldthecoder 2017-07-27 10:51:21 +08:00 committed by 杨奕
parent 265356453e
commit ee03e3b851
2 changed files with 11 additions and 2 deletions

View File

@ -171,6 +171,11 @@
}
}
}
@when disabled {
.el-upload-list__item:hover .el-upload-list__item-status-label {
display: block;
}
}
@e item-name {
color: var(--color-extra-light-black);
display: block;

View File

@ -1,7 +1,11 @@
<template>
<transition-group
tag="ul"
:class="['el-upload-list', 'el-upload-list--' + listType]"
:class="[
'el-upload-list',
'el-upload-list--' + listType,
{ 'is-disabled': disabled }
]"
name="el-list"
>
<li
@ -24,7 +28,7 @@
'el-icon-check': ['picture-card', 'picture'].indexOf(listType) > -1
}"></i>
</label>
<i class="el-icon-close" @click="$emit('remove', file)"></i>
<i class="el-icon-close" v-if="!disabled" @click="$emit('remove', file)"></i>
<el-progress
v-if="file.status === 'uploading'"
:type="listType === 'picture-card' ? 'circle' : 'line'"