123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <template>
- <el-card body-class="" class="image-card">
- <div class="image-operation">
- <div>
- <el-button type="" text bg v-if="imageDetail.status === 'in_progress'">生成中</el-button>
- <el-button type="" text bg v-else-if="imageDetail.status === 'fail'">已完成</el-button>
- <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)"/>
- </div>
- </div>
- <div class="image-wrapper" ref="cardImageRef">
- <img class="image" :src="imageDetail?.picUrl"/>
- </div>
- </el-card>
- </template>
- <script setup lang="ts">
- import {Delete, Download, More} from "@element-plus/icons-vue";
- import {ImageDetailVO} from "@/api/ai/image";
- import {PropType} from "vue";
- import {ElLoading} from "element-plus";
- const cardImageRef = ref<any>() // 卡片 image ref
- const cardImageLoadingInstance = ref<any>() // 卡片 image ref
- const props = defineProps({
- imageDetail: {
- type: Object as PropType<ImageDetailVO>,
- require: true
- }
- })
- /**
- * 按钮 - 点击事件
- */
- const handlerBtnClick = async (type, imageDetail: ImageDetailVO) => {
- emits('onBtnClick', type, imageDetail)
- }
- const handlerLoading = async (status: string) => {
- if (status === 'in_progress') {
- cardImageLoadingInstance.value = ElLoading.service({
- target: cardImageRef.value,
- text: '生成中...'
- })
- } else {
- if (cardImageLoadingInstance.value) {
- cardImageLoadingInstance.value.close();
- cardImageLoadingInstance.value = null;
- }
- }
- }
- // watch
- const { imageDetail } = toRefs(props)
- watch(imageDetail, async (newVal, oldVal) => {
- await handlerLoading(newVal.status as string)
- })
- // emits
- const emits = defineEmits(['onBtnClick'])
- //
- onMounted(async () => {
- await handlerLoading(props.imageDetail.status as string)
- })
- </script>
- <style scoped lang="scss">
- .image-card {
- width: 320px;
- height: auto;
- border-radius: 10px;
- position: relative;
- display: flex;
- flex-direction: column;
- .image-operation {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- .btn {
- //border: 1px solid red;
- padding: 10px;
- margin: 0;
- }
- }
- .image-wrapper {
- overflow: hidden;
- margin-top: 20px;
- height: 280px;
- flex: 1;
- .image {
- width: 100%;
- border-radius: 10px;
- }
- }
- }
- </style>
|