【增加】Image card 增加图片下载

This commit is contained in:
cherishsince
2024-05-28 11:35:02 +08:00
parent 2211618ada
commit fdeedcfe7b
2 changed files with 31 additions and 14 deletions

View File

@ -1,4 +1,3 @@
<template>
<el-card body-class="" class="image-card">
<div class="image-operation">
@ -8,13 +7,14 @@
<el-button type="" text bg v-else-if="imageDetail.status === 'complete'">已完成</el-button>
</div>
<div>
<el-button class="btn" text :icon="Download" @click="handlerBtnClick('download', imageDetail)" />
<el-button class="btn" text :icon="Delete" @click="handlerBtnClick('delete', imageDetail)" />
<el-button class="btn" text :icon="More" @click="handlerBtnClick('more', imageDetail)" />
<el-button class="btn" text :icon="Download"
@click="handlerBtnClick('download', imageDetail)"/>
<el-button class="btn" text :icon="Delete" @click="handlerBtnClick('delete', imageDetail)"/>
<el-button class="btn" text :icon="More" @click="handlerBtnClick('more', imageDetail)"/>
</div>
</div>
<div class="image-wrapper" ref="cardImageRef">
<img class="image" :src="imageDetail?.picUrl" />
<img class="image" :src="imageDetail?.picUrl"/>
</div>
</el-card>
</template>
@ -37,22 +37,15 @@ const props = defineProps({
/**
* 按钮 - 点击事件
*/
const handlerBtnClick = async (type, imageDetail: ImageDetailVO ) => {
const handlerBtnClick = async (type, imageDetail: ImageDetailVO) => {
emits('onBtnClick', type, imageDetail)
}
// 监听 imageDetail
// const { imageDetail } = toRefs(props)
// watch(imageDetail, async (newVal, oldValue) => {
// console.log('首次 watch')
//
// })
// emits
const emits = defineEmits(['onBtnClick'])
//
onMounted( async () => {
onMounted(async () => {
if (props.imageDetail.status === 'in_progress') {
cardImageLoadingInstance.value = ElLoading.service({
target: cardImageRef.value,