【增加】Dall3 增加图片生成 (function 待实现)

This commit is contained in:
cherishsince 2024-05-25 21:06:58 +08:00
parent 5232a2bf3f
commit 60de1b9737

View File

@ -65,7 +65,10 @@
</div>
</el-space>
</div>
<div class="btns">
<!-- <el-button size="large" round>重置内容</el-button>-->
<el-button type="primary" size="large" round @click="handlerGenerateImage">生成内容</el-button>
</div>
</template>
<script setup lang="ts">
@ -155,6 +158,12 @@ const handlerSizeClick = async (imageSize: ImageSizeVO) => {
console.log(imageSize)
}
/**
* 图片生产
*/
const handlerGenerateImage = async () => {
// todo @
}
</script>
<style scoped lang="scss">
@ -249,4 +258,10 @@ const handlerSizeClick = async (imageSize: ImageSizeVO) => {
border: 1px solid #1293ff !important;
}
}
.btns {
display: flex;
justify-content: center;
margin-top: 50px;
}
</style>