feat: The 'chat_models' field of user table, holds the model IDS in place of the model values

This commit is contained in:
RockYang
2024-03-18 15:37:46 +08:00
parent 172d498618
commit c72d963f45
13 changed files with 73 additions and 76 deletions

View File

@@ -116,7 +116,7 @@
v-for="item in models"
:key="item.id"
:label="item.name"
:value="item.value"
:value="item.id"
/>
</el-select>
</el-form-item>
@@ -297,7 +297,6 @@ const saveUser = function () {
}
const handleSelectionChange = function (rows) {
// TODO: 批量删除操作
console.log(rows)
}