mirror of
http://112.124.100.131/ebiz-ai/ebiz-ai-knowledge-manage.git
synced 2025-12-07 01:46:48 +08:00
fix(knowledge): 修复搜索设置中的模型标签显示错误
- 在 SearchSetting 组件中,将 el-option 的 label 属性从 item.label 改为 item.model - 在 SearchForm 组件中,同样将 el-option 的 label 属性从 item.label 改为 item.model - 这些修改确保了模型列表中显示的是正确的模型名称而不是标签
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
<el-option
|
||||
v-for="item in modelList"
|
||||
:key="item.model"
|
||||
:label="item.label"
|
||||
:label="item.model"
|
||||
:value="item.model"
|
||||
></el-option>
|
||||
</el-select>
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
<el-option
|
||||
v-for="item in rankModelList"
|
||||
:key="item.model"
|
||||
:label="item.label"
|
||||
:label="item.model"
|
||||
:value="item.model"
|
||||
></el-option>
|
||||
</el-select>
|
||||
|
||||
Reference in New Issue
Block a user