yangyin
2024-06-28 b0d091e9dd61abc52847d5ad368f25e7720eacaa
fix: 修改场景详情
已修改1个文件
32 ■■■■ 文件已修改
src/views/project/ch/home/ScenarioDetails.vue 32 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/project/ch/home/ScenarioDetails.vue
@@ -33,6 +33,9 @@
                            <el-form-item label="补充内容" prop="supplementContenT">
                                <el-input v-model="state.modelForm.supplementContenT" type="textarea" :rows="6" />
                            </el-form-item>
                            <div class="pt-[60px] text-right">
                                <el-button type="primary" @click="handleSubmit" size="large">立即生成</el-button>
                            </div>
                        </el-form>
                    </div>
                </div>
@@ -139,6 +142,7 @@
    supplementContenT: [{ required: true, message: '必填项', trigger: 'blur' }],
    modelType: [{ required: true, message: '必填项', trigger: 'change' }],
});
const handleSubmit = () => {};
</script>
<style scoped lang="scss">
.pc-detail {
@@ -219,12 +223,26 @@
        }
    }
}
.custom-select-style .el-select-dropdown__item {
    height: 32px;
    background: #eaf4ff;
    border-radius: 8px;
    margin: 5px;
    font-size: 14px;
    padding: 0 20px;
:deep(.el-select-dropdown__list) {
    max-width: 700px !important;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.custom-select-style {
    .el-select-dropdown__list {
        max-width: 700px !important;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .el-select-dropdown__item {
        height: 32px;
        background: #eaf4ff;
        border-radius: 8px;
        margin: 5px;
        font-size: 14px;
        padding: 0 20px;
    }
}
</style>