mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2025-01-20 04:22:49 +08:00
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
{
|
|
"properties" : { },
|
|
"id" : "f9a5956afdfd4492966b1a3c04dbadf6",
|
|
"script" : null,
|
|
"groupId" : "89130d496f6f467c88b22ae4a7f688eb",
|
|
"name" : "保存",
|
|
"createTime" : null,
|
|
"updateTime" : 1644046445441,
|
|
"lock" : "0",
|
|
"method" : "POST",
|
|
"path" : "/save",
|
|
"parameters" : [ ],
|
|
"option" : "[{\"name\":\"\",\"value\":\"\",\"description\":\"\"}]",
|
|
"requestBody" : "",
|
|
"headers" : [ ],
|
|
"paths" : [ ],
|
|
"responseBody" : null,
|
|
"description" : null,
|
|
"requestBodyDefinition" : null,
|
|
"responseBodyDefinition" : null,
|
|
"optionMap" : {
|
|
"" : ""
|
|
}
|
|
}
|
|
================================
|
|
import '@get:/role/cache/delete' as cacheDelete
|
|
|
|
var codeCount = db.selectInt("select count(1) from sys_role where is_del = 0 and code = #{code} ?{id, and id != #{id}}")
|
|
if(codeCount > 0){
|
|
exit 0,'角色编码已存在'
|
|
}
|
|
|
|
var role = {
|
|
code,
|
|
permission,
|
|
descRibe,
|
|
type,
|
|
name,
|
|
sort,
|
|
id
|
|
}
|
|
if(id){
|
|
var roleId = id
|
|
cacheDelete()
|
|
db.table("sys_role_menu").where().eq("role_id",id).delete()
|
|
}
|
|
id = db.table("sys_role").primary("id").saveOrUpdate(role);
|
|
for(menuId in menus.split(',')){
|
|
db.table("sys_role_menu").column("menu_id",menuId).column("role_id", id).insert();
|
|
}
|
|
db.table("sys_role_office").where().eq("role_id",id).delete()
|
|
if(offices && permission == 1){
|
|
for(officeId in offices.split(',')){
|
|
db.table("sys_role_office").column("office_id",officeId).column("role_id", id).insert();
|
|
}
|
|
}
|