【优化】Image 抽屉,使用 Card 组件

This commit is contained in:
cherishsince 2024-05-26 21:53:26 +08:00
parent c06dd8e273
commit cb7c5b7458

View File

@ -4,13 +4,35 @@
title="图片详细"
@close="handlerDrawerClose"
>
<span>Hi, there!</span>
<div class="item">
<div class="header">
<div>图片</div>
<div>
<el-button class="btn" text :icon="Download" />
<el-button class="btn" text :icon="Delete" />
<el-button class="btn" text :icon="More" @click="handlerTaskDetail" />
</div>
</div>
<div class="body">
<ImageTaskCard :image-detail="imageDetail" />
</div>
</div>
<div class="item">
<div class="tip">提示词</div>
<div class="body">
{{imageDetail.prompt}}
</div>
</div>
</el-drawer>
</template>
<script setup lang="ts">
import {ImageApi, ImageDetailVO} from '@/api/ai/image';
import ImageTaskCard from './ImageTaskCard.vue';
import {Delete, Download, More} from "@element-plus/icons-vue";
const showDrawer = ref<boolean>(false) //
const imageDetail = ref<ImageDetailVO>({} as ImageDetailVO) //
const props = defineProps({
show: {
@ -20,7 +42,6 @@ const props = defineProps({
}
})
/**
* 抽屉 - close
*/
@ -28,6 +49,21 @@ const handlerDrawerClose = async () => {
emits('handlerDrawerClose')
}
/**
* 获取 - 图片 detail
*/
const getImageDetail = async (id) => {
//
imageDetail.value = await ImageApi.getImageDetail(id)
}
/**
* 任务 - detail
*/
const handlerTaskDetail = async () => {
showDrawer.value = true
}
// watch
const { show } = toRefs(props)
watch(show, async (newValue, oldValue) => {
@ -36,7 +72,33 @@ watch(show, async (newValue, oldValue) => {
//
const emits = defineEmits(['handlerDrawerClose'])
//
onMounted(async () => {
await getImageDetail(1)
})
</script>
<style scoped lang="scss">
.item {
margin-bottom: 20px;
.header {
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 16px;
font-weight: bold;
}
.body {
margin-top: 10px;
color: #616161;
}
}
.taskImage {
border-radius: 10px;
}
</style>