【优化】midjourney 模型默认选中一个模型

This commit is contained in:
cherishsince 2024-05-30 16:30:39 +08:00
parent d1be8991b3
commit 616fe2c3c1

View File

@ -77,7 +77,7 @@ interface ImageSizeVO {
//
const prompt = ref<string>('') //
const selectHotWord = ref<string>('midjourney') //
const selectHotWord = ref<string>('') //
const hotWords = ref<string[]>(['中国旗袍', '古装美女', '卡通头像', '机甲战士', '童话小屋', '中国长城']) //
const selectModel = ref<any>() //
const models = ref<ImageModelVO[]>([
@ -92,6 +92,7 @@ const models = ref<ImageModelVO[]>([
image: 'https://bigpt8.com/pc/_nuxt/nj.ca79b143.png',
},
]) //
selectModel.value = models.value[0] //
// Props
const props = defineProps({})
@ -115,10 +116,6 @@ const handlerHotWordClick = async (hotWord: string) => {
* 模型 - click
*/
const handlerModelClick = async (model: ImageModelVO) => {
if (selectModel.value === model) {
selectModel.value = {} as ImageModelVO
return
}
selectModel.value = model
}