fix(knowledge): 修复搜索设置中的模型标签显示错误

- 在 SearchSetting 组件中,将 el-option 的 label 属性从 item.label 改为 item.model
- 在 SearchForm 组件中,同样将 el-option 的 label 属性从 item.label 改为 item.model
- 这些修改确保了模型列表中显示的是正确的模型名称而不是标签
This commit is contained in:
陈昱达
2025-05-13 10:26:01 +08:00
parent 75dbd87dec
commit 7b045ac834
2 changed files with 2 additions and 2 deletions

View File

@@ -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>

View File

@@ -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>