gaoluyang
2026-06-29 27cd042df9aca0383a49f3514bc21958dd890912
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!-- dall3 -->
<script setup lang="ts">
import type { ImageModel, ImageSize } from '../../../../../../packages/constants/src';
 
import type { AiImageApi } from '#/api/ai/image';
import type { AiModelModelApi } from '#/api/ai/model/model';
 
import { ref } from 'vue';
 
import { confirm } from '../../../../../../packages/effects/common-ui/src';
import {
  AiPlatformEnum,
  ImageHotWords,
  MidjourneyModels,
  MidjourneySizeList,
  MidjourneyVersions,
  NijiVersionList,
} from '../../../../../../packages/constants/src';
 
import {
  Button,
  Image,
  message,
  Select,
  Space,
  Textarea,
} from 'ant-design-vue';
 
import { midjourneyImagine } from '#/api/ai/image';
import { ImageUpload } from '#/components/upload';
 
const props = defineProps({
  models: {
    type: Array<AiModelModelApi.Model>,
    default: () => [] as AiModelModelApi.Model[],
  },
}); // 接收父组件传入的模型列表
const emits = defineEmits(['onDrawStart', 'onDrawComplete']);
 
const drawIn = ref<boolean>(false); // 生成中
const selectHotWord = ref<string>(''); // 选中的热词
 
const prompt = ref<string>(''); // 提示词
const referImageUrl = ref<any>(); // 参考图
const selectModel = ref<string>('midjourney'); // 选中的模型
const selectSize = ref<string>('1:1'); // 选中 size
const selectVersion = ref<any>('6.0'); // 选中的 version
const versionList = ref<any>(MidjourneyVersions); // version 列表
 
/** 选择热词 */
async function handleHotWordClick(hotWord: string) {
  // 情况一:取消选中
  if (selectHotWord.value === hotWord) {
    selectHotWord.value = '';
    return;
  }
  // 情况二:选中
  selectHotWord.value = hotWord; // 选中
  prompt.value = hotWord; // 设置提示次
}
 
/** 点击 size 尺寸 */
async function handleSizeClick(imageSize: ImageSize) {
  selectSize.value = imageSize.key;
}
 
/** 点击 model 模型 */
async function handleModelClick(model: ImageModel) {
  selectModel.value = model.key;
  versionList.value =
    model.key === 'niji' ? NijiVersionList : MidjourneyVersions;
  selectVersion.value = versionList.value[0].value;
}
 
/** 图片生成 */
async function handleGenerateImage() {
  // 从 models 中查找匹配的模型
  const matchedModel = props.models.find(
    (item) =>
      item.model === selectModel.value &&
      item.platform === AiPlatformEnum.MIDJOURNEY,
  );
  if (!matchedModel) {
    message.error('该模型不可用,请选择其它模型');
    return;
  }
 
  // 二次确认
  await confirm(`确认生成内容?`);
  try {
    // 加载中
    drawIn.value = true;
    // 回调
    emits('onDrawStart', AiPlatformEnum.MIDJOURNEY);
    // 发送请求
    const imageSize = MidjourneySizeList.find(
      (item) => selectSize.value === item.key,
    ) as ImageSize;
    const req = {
      prompt: prompt.value,
      modelId: matchedModel.id,
      base64Array: [],
      width: imageSize.width,
      height: imageSize.height,
      version: selectVersion.value,
      referImageUrl: referImageUrl.value,
    } as AiImageApi.ImageMidjourneyImagineReqVO;
    await midjourneyImagine(req);
  } finally {
    // 回调
    emits('onDrawComplete', AiPlatformEnum.MIDJOURNEY);
    // 加载结束
    drawIn.value = false;
  }
}
 
/** 填充值 */
async function settingValues(detail: AiImageApi.Image) {
  // 提示词
  prompt.value = detail.prompt;
  // image size
  const imageSize = MidjourneySizeList.find(
    (item) => item.key === `${detail.width}:${detail.height}`,
  ) as ImageSize;
  selectSize.value = imageSize.key;
  // 选中模型
  const model = MidjourneyModels.find(
    (item) => item.key === detail.options?.model,
  ) as ImageModel;
  await handleModelClick(model);
  // 版本
  selectVersion.value = versionList.value.find(
    (item: any) => item.value === detail.options?.version,
  ).value;
  // image
  referImageUrl.value = detail.options.referImageUrl;
}
 
defineExpose({ settingValues });
</script>
<template>
  <div class="prompt">
    <b>画面描述</b>
    <p>建议使用“形容词+动词+风格”的格式,使用“,”隔开.</p>
    <Textarea
      v-model:value="prompt"
      :maxlength="1024"
      :rows="5"
      class="mt-4 w-full"
      placeholder="例如:童话里的小屋应该是什么样子?"
      show-count
    />
  </div>
 
  <div class="mt-8 flex flex-col">
    <div><b>随机热词</b></div>
    <Space wrap class="mt-4 flex flex-wrap gap-2">
      <Button
        shape="round"
        class="m-0"
        :type="selectHotWord === hotWord ? 'primary' : 'default'"
        v-for="hotWord in ImageHotWords"
        :key="hotWord"
        @click="handleHotWordClick(hotWord)"
      >
        {{ hotWord }}
      </Button>
    </Space>
  </div>
 
  <div class="mt-8">
    <div><b>尺寸</b></div>
    <Space wrap class="mt-4 flex w-full flex-wrap gap-2">
      <div
        class="flex cursor-pointer flex-col items-center overflow-hidden"
        v-for="imageSize in MidjourneySizeList"
        :key="imageSize.key"
        @click="handleSizeClick(imageSize)"
      >
        <div
          class="flex h-12 w-12 items-center justify-center rounded-lg border bg-card p-0"
          :class="[
            selectSize === imageSize.key ? 'border-blue-500' : 'border-white',
          ]"
        >
          <div :style="imageSize.style"></div>
        </div>
        <div class="text-sm font-bold text-gray-600">{{ imageSize.key }}</div>
      </div>
    </Space>
  </div>
 
  <div class="mt-8">
    <div><b>模型</b></div>
    <Space wrap class="mt-4 flex flex-wrap gap-2">
      <div
        v-for="model in MidjourneyModels"
        :key="model.key"
        class="flex max-w-40 cursor-pointer flex-col items-center overflow-hidden"
        :class="[
          selectModel === model.key
            ? 'rounded border-blue-500'
            : 'border-transparent',
        ]"
      >
        <Image
          :preview="false"
          :src="model.image"
          fit="contain"
          @click="handleModelClick(model)"
        />
        <div class="text-sm font-bold text-gray-600">{{ model.name }}</div>
      </div>
    </Space>
  </div>
 
  <div class="mt-8">
    <div><b>版本</b></div>
    <Space wrap class="mt-5 flex w-full flex-wrap gap-2">
      <Select
        v-model:value="selectVersion"
        class="!w-80"
        allow-clear
        placeholder="请选择版本"
      >
        <Select.Option
          v-for="item in versionList"
          :key="item.value"
          :value="item.value"
        >
          {{ item.label }}
        </Select.Option>
      </Select>
    </Space>
  </div>
 
  <div class="mt-8">
    <div><b>参考图</b></div>
    <Space wrap class="mt-4">
      <ImageUpload v-model:value="referImageUrl" :show-description="false" />
    </Space>
  </div>
 
  <div class="mt-8 flex justify-center">
    <Button
      type="primary"
      size="large"
      shape="round"
      :disabled="prompt.length === 0"
      @click="handleGenerateImage"
    >
      {{ drawIn ? '生成中' : '生成内容' }}
    </Button>
  </div>
</template>