mirror of https://gitee.com/xiaonuobase/snowy
[bugfix]修复无法删除【系统配置】-->【其他配置】记录问题
Signed-off-by: xiaomaiyun <923782299@qq.com>pull/78/head
parent
d053263f4b
commit
311b8f7f38
|
@ -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)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue