perf: advanced template setting style

This commit is contained in:
wangdan-fit2cloud 2024-12-25 18:24:26 +08:00
parent 3bae4c5511
commit a1f950899a
2 changed files with 19 additions and 3 deletions

View File

@ -91,7 +91,9 @@
<p>向量模型在知识库中对文档内容进行向量化的模型</p> <p>向量模型在知识库中对文档内容进行向量化的模型</p>
<p>语音识别在应用中开启语音识别后用于语音转文字的模型</p> <p>语音识别在应用中开启语音识别后用于语音转文字的模型</p>
<p>语音合成在应用中开启语音播放后用于文字转语音的模型</p> <p>语音合成在应用中开启语音播放后用于文字转语音的模型</p>
<p>重排模型在高级编排应用中使用多路召回时对候选分段进行重新排序的模型</p> <p>
重排模型在高级编排应用中使用多路召回时对候选分段进行重新排序的模型
</p>
<p>图片理解在高级编排应用中用于图片理解的视觉模型</p> <p>图片理解在高级编排应用中用于图片理解的视觉模型</p>
<p>图片生成在高级编排应用中用于图片生成的视觉模型</p> <p>图片生成在高级编排应用中用于图片生成的视觉模型</p>
</template> </template>
@ -155,7 +157,11 @@
</DynamicsForm> </DynamicsForm>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="高级设置" name="advanced-info"> <el-tab-pane label="高级设置" name="advanced-info">
<div class="flex-between mb-8"> <el-empty
v-if="base_form_data.model_params_form?.length === 0"
description="请先选择基础信息的模型类型和基础模型"
/>
<div class="flex-between mb-8" v-else>
<h5>模型参数</h5> <h5>模型参数</h5>
<el-button type="text" @click.stop="openAddDrawer()"> <el-button type="text" @click.stop="openAddDrawer()">
<AppIcon iconName="Plus" class="add-icon" />添加 <AppIcon iconName="Plus" class="add-icon" />添加
@ -215,7 +221,14 @@
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
<el-button @click="close">取消</el-button> <el-button @click="close">取消</el-button>
<el-button type="primary" @click="submit" :loading="loading"> 添加 </el-button> <el-button
v-if="base_form_data.model_params_form?.length === 0"
type="primary"
@click="openAddDrawer"
>
添加
</el-button>
<el-button v-else type="primary" @click="submit" :loading="loading"> 添加 </el-button>
</span> </span>
</template> </template>
</el-dialog> </el-dialog>
@ -360,6 +373,8 @@ const submit = () => {
emit('submit') emit('submit')
}) })
} }
}).catch(() => {
MsgError('基础信息有填写错误')
}) })
} }

View File

@ -97,6 +97,7 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item
prop="content_list"
label="选择文本内容" label="选择文本内容"
:rules="{ :rules="{
message: '选择文本内容', message: '选择文本内容',