feat: refactor midjourney image creating page

This commit is contained in:
RockYang
2023-12-06 18:54:30 +08:00
parent ae8239e5de
commit babef8baae
25 changed files with 895 additions and 726 deletions

View File

@@ -53,7 +53,10 @@
<el-form :model="item" label-width="120px" ref="formRef" :rules="rules">
<el-form-item label="所属平台" prop="platform">
<el-select v-model="item.platform" placeholder="请选择平台">
<el-option v-for="item in platforms" :value="item.value" :key="item.value">{{ item.name }}</el-option>
<el-option v-for="item in platforms" :value="item.value" :label="item.name" :key="item.value">{{
item.name
}}
</el-option>
</el-select>
</el-form-item>