mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2025-01-31 17:12:49 +08:00
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
{
|
|
"properties" : { },
|
|
"id" : "da1bbeb256cf417cb26aaf2426ed58c3",
|
|
"script" : null,
|
|
"groupId" : "6f106ebdee21489db34b956f7770ff03",
|
|
"name" : "删除组件",
|
|
"createTime" : null,
|
|
"updateTime" : 1710082768049,
|
|
"lock" : null,
|
|
"createBy" : null,
|
|
"updateBy" : null,
|
|
"path" : "/delete",
|
|
"method" : "DELETE",
|
|
"parameters" : [ ],
|
|
"options" : [ {
|
|
"name" : "permission",
|
|
"value" : "component:delete",
|
|
"description" : "允许拥有该权限的访问",
|
|
"required" : false,
|
|
"dataType" : "String",
|
|
"type" : null,
|
|
"defaultValue" : null,
|
|
"validateType" : null,
|
|
"error" : null,
|
|
"expression" : null,
|
|
"children" : null
|
|
} ],
|
|
"requestBody" : "",
|
|
"headers" : [ ],
|
|
"paths" : [ ],
|
|
"responseBody" : null,
|
|
"description" : null,
|
|
"requestBodyDefinition" : null,
|
|
"responseBodyDefinition" : null
|
|
}
|
|
================================
|
|
|
|
let recursionDelete = (list) => {
|
|
list.forEach(it => {
|
|
db.table("sys_dynamic_component").logic().where().eq("id",it.id).delete()
|
|
let children = db.select("select id from sys_dynamic_component where is_del = 0 and pid = #{it.id}")
|
|
if(children && children.size() > 0){
|
|
recursionDelete(children)
|
|
}
|
|
})
|
|
}
|
|
recursionDelete(db.select("select id from sys_dynamic_component where is_del = 0 and pid = #{id}"))
|
|
|
|
return db.table("sys_dynamic_component").logic().where().eq("id",id).delete() |