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

Signed-off-by: xiaomaiyun <923782299@qq.com>
pull/78/head
xiaomaiyun 2022-12-28 08:29:46 +00:00 committed by Gitee
parent d053263f4b
commit 311b8f7f38
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 5 additions and 3 deletions

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)
}) })