!78 【bugfix】修复无法删除【系统配置】-->【其他配置】记录问题

Merge pull request !78 from xiaomaiyun/master
This commit is contained in:
小诺 2022-12-31 15:28:02 +00:00 committed by Gitee
commit ed6419d2d9
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -83,9 +83,11 @@
} }
// //
const deleteConfig = (record) => { const deleteConfig = (record) => {
let params = { let params = [
id: record.id {
} id: record.id
}
]
configApi.configDelete(params).then(() => { configApi.configDelete(params).then(() => {
table.value.refresh(true) table.value.refresh(true)
}) })