We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e881b9c commit ba8681eCopy full SHA for ba8681e
src/views/ai/image/index/components/ImageDetail.vue
@@ -119,6 +119,25 @@
119
{{ Dall3StyleList.find((item: ImageModelVO) => item.key === detail?.options?.style)?.name }}
120
</div>
121
122
+ <!-- Midjourney 专属区域 -->
123
+ <div
124
+ class="item"
125
+ v-if="detail.platform === AiPlatformEnum.MIDJOURNEY && detail?.options?.version"
126
+ >
127
+ <div class="tip">模型版本</div>
128
+ <div class="body">
129
+ {{ detail?.options?.version }}
130
+ </div>
131
132
133
134
+ v-if="detail.platform === AiPlatformEnum.MIDJOURNEY && detail?.options?.referImageUrl"
135
136
+ <div class="tip">参考图</div>
137
138
+ <el-image :src="detail.options.referImageUrl" />
139
140
141
</el-drawer>
142
</template>
143
0 commit comments