mirror of https://github.com/ElemeFE/element
Upload: add capability to customize thumbnail template (#13192)
parent
6f9ce3accb
commit
002adf462f
|
@ -154,6 +154,75 @@ Use `list-type` to change the fileList style.
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
### Custom file thumbnail
|
||||||
|
|
||||||
|
Use `scoped-slot` to change default thumbnail template.
|
||||||
|
|
||||||
|
:::demo
|
||||||
|
```html
|
||||||
|
<el-upload
|
||||||
|
action="#"
|
||||||
|
list-type="picture-card"
|
||||||
|
:auto-upload="false">
|
||||||
|
<i slot="default" class="el-icon-plus"></i>
|
||||||
|
<div slot="file" slot-scope="{file}">
|
||||||
|
<img
|
||||||
|
class="el-upload-list__item-thumbnail"
|
||||||
|
:src="file.url" alt=""
|
||||||
|
>
|
||||||
|
<span class="el-upload-list__item-actions">
|
||||||
|
<span
|
||||||
|
class="el-upload-list__item-preview"
|
||||||
|
@click="handlePictureCardPreview(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-zoom-in"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleDownload(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-download"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleRemove(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-delete"></i>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</el-upload>
|
||||||
|
<el-dialog :visible.sync="dialogVisible">
|
||||||
|
<img width="100%" :src="dialogImageUrl" alt="">
|
||||||
|
</el-dialog>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dialogImageUrl: '',
|
||||||
|
dialogVisible: false,
|
||||||
|
disabled: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleRemove(file) {
|
||||||
|
console.log(file);
|
||||||
|
},
|
||||||
|
handlePictureCardPreview(file) {
|
||||||
|
this.dialogImageUrl = file.url;
|
||||||
|
this.dialogVisible = true;
|
||||||
|
},
|
||||||
|
handleDownload(file) {
|
||||||
|
console.log(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
:::
|
||||||
|
|
||||||
### FileList with thumbnail
|
### FileList with thumbnail
|
||||||
|
|
||||||
:::demo
|
:::demo
|
||||||
|
|
|
@ -150,6 +150,75 @@ Utilice la propiedad `list-type` para cambiar el estilo a un listado de archivos
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
### Custom file thumbnail
|
||||||
|
|
||||||
|
Use `scoped-slot` to change default thumbnail template.
|
||||||
|
|
||||||
|
:::demo
|
||||||
|
```html
|
||||||
|
<el-upload
|
||||||
|
action="#"
|
||||||
|
list-type="picture-card"
|
||||||
|
:auto-upload="false">
|
||||||
|
<i slot="default" class="el-icon-plus"></i>
|
||||||
|
<div slot="file" slot-scope="{file}">
|
||||||
|
<img
|
||||||
|
class="el-upload-list__item-thumbnail"
|
||||||
|
:src="file.url" alt=""
|
||||||
|
>
|
||||||
|
<span class="el-upload-list__item-actions">
|
||||||
|
<span
|
||||||
|
class="el-upload-list__item-preview"
|
||||||
|
@click="handlePictureCardPreview(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-zoom-in"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleDownload(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-download"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleRemove(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-delete"></i>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</el-upload>
|
||||||
|
<el-dialog :visible.sync="dialogVisible">
|
||||||
|
<img width="100%" :src="dialogImageUrl" alt="">
|
||||||
|
</el-dialog>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dialogImageUrl: '',
|
||||||
|
dialogVisible: false,
|
||||||
|
disabled: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleRemove(file) {
|
||||||
|
console.log(file);
|
||||||
|
},
|
||||||
|
handlePictureCardPreview(file) {
|
||||||
|
this.dialogImageUrl = file.url;
|
||||||
|
this.dialogVisible = true;
|
||||||
|
},
|
||||||
|
handleDownload(file) {
|
||||||
|
console.log(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
:::
|
||||||
|
|
||||||
### Lista de archivos con miniatura
|
### Lista de archivos con miniatura
|
||||||
|
|
||||||
:::demo
|
:::demo
|
||||||
|
|
|
@ -154,6 +154,75 @@ Utilisez `list-type` pour changer le style de la liste de fichiers.
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
### Custom file thumbnail
|
||||||
|
|
||||||
|
Use `scoped-slot` to change default thumbnail template.
|
||||||
|
|
||||||
|
:::demo
|
||||||
|
```html
|
||||||
|
<el-upload
|
||||||
|
action="#"
|
||||||
|
list-type="picture-card"
|
||||||
|
:auto-upload="false">
|
||||||
|
<i slot="default" class="el-icon-plus"></i>
|
||||||
|
<div slot="file" slot-scope="{file}">
|
||||||
|
<img
|
||||||
|
class="el-upload-list__item-thumbnail"
|
||||||
|
:src="file.url" alt=""
|
||||||
|
>
|
||||||
|
<span class="el-upload-list__item-actions">
|
||||||
|
<span
|
||||||
|
class="el-upload-list__item-preview"
|
||||||
|
@click="handlePictureCardPreview(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-zoom-in"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleDownload(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-download"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleRemove(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-delete"></i>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</el-upload>
|
||||||
|
<el-dialog :visible.sync="dialogVisible">
|
||||||
|
<img width="100%" :src="dialogImageUrl" alt="">
|
||||||
|
</el-dialog>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dialogImageUrl: '',
|
||||||
|
dialogVisible: false,
|
||||||
|
disabled: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleRemove(file) {
|
||||||
|
console.log(file);
|
||||||
|
},
|
||||||
|
handlePictureCardPreview(file) {
|
||||||
|
this.dialogImageUrl = file.url;
|
||||||
|
this.dialogVisible = true;
|
||||||
|
},
|
||||||
|
handleDownload(file) {
|
||||||
|
console.log(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
:::
|
||||||
|
|
||||||
### Liste de fichiers avec miniatures
|
### Liste de fichiers avec miniatures
|
||||||
|
|
||||||
:::demo
|
:::demo
|
||||||
|
|
|
@ -154,6 +154,75 @@
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
### 文件缩略图
|
||||||
|
|
||||||
|
使用 `scoped-slot` 去设置缩略图模版。
|
||||||
|
|
||||||
|
:::demo
|
||||||
|
```html
|
||||||
|
<el-upload
|
||||||
|
action="#"
|
||||||
|
list-type="picture-card"
|
||||||
|
:auto-upload="false">
|
||||||
|
<i slot="default" class="el-icon-plus"></i>
|
||||||
|
<div slot="file" slot-scope="{file}">
|
||||||
|
<img
|
||||||
|
class="el-upload-list__item-thumbnail"
|
||||||
|
:src="file.url" alt=""
|
||||||
|
>
|
||||||
|
<span class="el-upload-list__item-actions">
|
||||||
|
<span
|
||||||
|
class="el-upload-list__item-preview"
|
||||||
|
@click="handlePictureCardPreview(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-zoom-in"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleDownload(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-download"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="handleRemove(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-delete"></i>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</el-upload>
|
||||||
|
<el-dialog :visible.sync="dialogVisible">
|
||||||
|
<img width="100%" :src="dialogImageUrl" alt="">
|
||||||
|
</el-dialog>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dialogImageUrl: '',
|
||||||
|
dialogVisible: false,
|
||||||
|
disabled: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleRemove(file) {
|
||||||
|
console.log(file);
|
||||||
|
},
|
||||||
|
handlePictureCardPreview(file) {
|
||||||
|
this.dialogImageUrl = file.url;
|
||||||
|
this.dialogVisible = true;
|
||||||
|
},
|
||||||
|
handleDownload(file) {
|
||||||
|
console.log(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
:::
|
||||||
|
|
||||||
### 图片列表缩略图
|
### 图片列表缩略图
|
||||||
|
|
||||||
:::demo
|
:::demo
|
||||||
|
|
|
@ -276,6 +276,15 @@ export default {
|
||||||
files={this.uploadFiles}
|
files={this.uploadFiles}
|
||||||
on-remove={this.handleRemove}
|
on-remove={this.handleRemove}
|
||||||
handlePreview={this.onPreview}>
|
handlePreview={this.onPreview}>
|
||||||
|
{
|
||||||
|
(props) => {
|
||||||
|
if (this.$scopedSlots.file) {
|
||||||
|
return this.$scopedSlots.file({
|
||||||
|
file: props.file
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</UploadList>
|
</UploadList>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,45 +18,47 @@
|
||||||
@blur="focusing = false"
|
@blur="focusing = false"
|
||||||
@click="focusing = false"
|
@click="focusing = false"
|
||||||
>
|
>
|
||||||
<img
|
<slot :file="file">
|
||||||
class="el-upload-list__item-thumbnail"
|
<img
|
||||||
v-if="file.status !== 'uploading' && ['picture-card', 'picture'].indexOf(listType) > -1"
|
class="el-upload-list__item-thumbnail"
|
||||||
:src="file.url" alt=""
|
v-if="file.status !== 'uploading' && ['picture-card', 'picture'].indexOf(listType) > -1"
|
||||||
>
|
:src="file.url" alt=""
|
||||||
<a class="el-upload-list__item-name" @click="handleClick(file)">
|
|
||||||
<i class="el-icon-document"></i>{{file.name}}
|
|
||||||
</a>
|
|
||||||
<label class="el-upload-list__item-status-label">
|
|
||||||
<i :class="{
|
|
||||||
'el-icon-upload-success': true,
|
|
||||||
'el-icon-circle-check': listType === 'text',
|
|
||||||
'el-icon-check': ['picture-card', 'picture'].indexOf(listType) > -1
|
|
||||||
}"></i>
|
|
||||||
</label>
|
|
||||||
<i class="el-icon-close" v-if="!disabled" @click="$emit('remove', file)"></i>
|
|
||||||
<i class="el-icon-close-tip" v-if="!disabled">{{ t('el.upload.deleteTip') }}</i> <!--因为close按钮只在li:focus的时候 display, li blur后就不存在了,所以键盘导航时永远无法 focus到 close按钮上-->
|
|
||||||
<el-progress
|
|
||||||
v-if="file.status === 'uploading'"
|
|
||||||
:type="listType === 'picture-card' ? 'circle' : 'line'"
|
|
||||||
:stroke-width="listType === 'picture-card' ? 6 : 2"
|
|
||||||
:percentage="parsePercentage(file.percentage)">
|
|
||||||
</el-progress>
|
|
||||||
<span class="el-upload-list__item-actions" v-if="listType === 'picture-card'">
|
|
||||||
<span
|
|
||||||
class="el-upload-list__item-preview"
|
|
||||||
v-if="handlePreview && listType === 'picture-card'"
|
|
||||||
@click="handlePreview(file)"
|
|
||||||
>
|
>
|
||||||
<i class="el-icon-zoom-in"></i>
|
<a class="el-upload-list__item-name" @click="handleClick(file)">
|
||||||
|
<i class="el-icon-document"></i>{{file.name}}
|
||||||
|
</a>
|
||||||
|
<label class="el-upload-list__item-status-label">
|
||||||
|
<i :class="{
|
||||||
|
'el-icon-upload-success': true,
|
||||||
|
'el-icon-circle-check': listType === 'text',
|
||||||
|
'el-icon-check': ['picture-card', 'picture'].indexOf(listType) > -1
|
||||||
|
}"></i>
|
||||||
|
</label>
|
||||||
|
<i class="el-icon-close" v-if="!disabled" @click="$emit('remove', file)"></i>
|
||||||
|
<i class="el-icon-close-tip" v-if="!disabled">{{ t('el.upload.deleteTip') }}</i> <!--因为close按钮只在li:focus的时候 display, li blur后就不存在了,所以键盘导航时永远无法 focus到 close按钮上-->
|
||||||
|
<el-progress
|
||||||
|
v-if="file.status === 'uploading'"
|
||||||
|
:type="listType === 'picture-card' ? 'circle' : 'line'"
|
||||||
|
:stroke-width="listType === 'picture-card' ? 6 : 2"
|
||||||
|
:percentage="parsePercentage(file.percentage)">
|
||||||
|
</el-progress>
|
||||||
|
<span class="el-upload-list__item-actions" v-if="listType === 'picture-card'">
|
||||||
|
<span
|
||||||
|
class="el-upload-list__item-preview"
|
||||||
|
v-if="handlePreview && listType === 'picture-card'"
|
||||||
|
@click="handlePreview(file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-zoom-in"></i>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="!disabled"
|
||||||
|
class="el-upload-list__item-delete"
|
||||||
|
@click="$emit('remove', file)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-delete"></i>
|
||||||
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span
|
</slot>
|
||||||
v-if="!disabled"
|
|
||||||
class="el-upload-list__item-delete"
|
|
||||||
@click="$emit('remove', file)"
|
|
||||||
>
|
|
||||||
<i class="el-icon-delete"></i>
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
</li>
|
</li>
|
||||||
</transition-group>
|
</transition-group>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue