【增加】Dall3 增加图片生成 (function 待实现)
parent
5232a2bf3f
commit
60de1b9737
|
@ -65,7 +65,10 @@
|
||||||
</div>
|
</div>
|
||||||
</el-space>
|
</el-space>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="btns">
|
||||||
|
<!-- <el-button size="large" round>重置内容</el-button>-->
|
||||||
|
<el-button type="primary" size="large" round @click="handlerGenerateImage">生成内容</el-button>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
@ -155,6 +158,12 @@ const handlerSizeClick = async (imageSize: ImageSizeVO) => {
|
||||||
console.log(imageSize)
|
console.log(imageSize)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 图片生产
|
||||||
|
*/
|
||||||
|
const handlerGenerateImage = async () => {
|
||||||
|
// todo @范 图片生产逻辑
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
||||||
|
@ -249,4 +258,10 @@ const handlerSizeClick = async (imageSize: ImageSizeVO) => {
|
||||||
border: 1px solid #1293ff !important;
|
border: 1px solid #1293ff !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btns {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 50px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue