mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-15 03:06:25 +08:00
68 lines
1.6 KiB
Vue
68 lines
1.6 KiB
Vue
<template>
|
|
<el-upload action="#" list-type="picture-card" :auto-upload="false">
|
|
<template #default>
|
|
<el-icon><plus /></el-icon>
|
|
</template>
|
|
<template #file="{ file }">
|
|
<div>
|
|
<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)"
|
|
>
|
|
<el-icon><zoom-in /></el-icon>
|
|
</span>
|
|
<span
|
|
v-if="!disabled"
|
|
class="el-upload-list__item-delete"
|
|
@click="handleDownload(file)"
|
|
>
|
|
<el-icon><download /></el-icon>
|
|
</span>
|
|
<span
|
|
v-if="!disabled"
|
|
class="el-upload-list__item-delete"
|
|
@click="handleRemove(file)"
|
|
>
|
|
<el-icon><delete /></el-icon>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
</el-upload>
|
|
<el-dialog v-model="dialogVisible">
|
|
<img width="100%" :src="dialogImageUrl" alt="" />
|
|
</el-dialog>
|
|
</template>
|
|
<script lang="ts">
|
|
import { Plus, ZoomIn, Download, Delete } from '@element-plus/icons-vue'
|
|
export default {
|
|
components: {
|
|
Plus,
|
|
ZoomIn,
|
|
Download,
|
|
Delete,
|
|
},
|
|
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>
|