调整即梦AI移动端参数

This commit is contained in:
GeekMaster
2025-08-08 16:30:45 +08:00
parent af31f91973
commit 8c03ecad2b
8 changed files with 626 additions and 639 deletions

View File

@@ -21,7 +21,7 @@
</div>
<div v-else class="upload-item single-image-item">
<el-image :src="imageList[0]" fit="cover" class="upload-image" />
<div class="upload-overlay" style="opacity: 1">
<div class="upload-overlay">
<el-button
type="danger"
:icon="Delete"
@@ -270,8 +270,7 @@ const removeImage = (index) => {
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s;
opacity: 1;
.remove-btn {
background: rgba(245, 108, 108, 0.8);
@@ -279,10 +278,6 @@ const removeImage = (index) => {
color: white;
}
}
&:hover .upload-overlay {
opacity: 1;
}
}
.upload-btn {

View File

@@ -1,6 +1,5 @@
<template>
<div class="custom-select">
<label v-if="label" class="block text-gray-700 font-medium mb-2">{{ label }}</label>
<div class="custom-select w-full">
<button
@click="showPicker = true"
class="w-full flex items-center justify-between px-4 py-3 bg-gray-50 rounded-lg border border-gray-200 hover:border-blue-300 transition-colors"
@@ -51,7 +50,7 @@
</template>
<script setup>
import { ref, computed, watch } from 'vue'
import { computed, ref } from 'vue'
import CustomSelectOption from './CustomSelectOption.vue'
// Props
@@ -64,10 +63,6 @@ const props = defineProps({
type: Array,
default: () => [],
},
label: {
type: String,
default: '',
},
placeholder: {
type: String,
default: '请选择',