From 33f76b8803f52122edb1d189ede196d39a83cdb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=95=E9=87=91=E6=B3=BD?= <1098696801@qq.com> Date: Sun, 9 Jan 2022 22:13:45 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E7=BB=87=E6=9C=BA=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/magic-api/api/后台/组织机构/group.json | 10 + data/magic-api/api/后台/组织机构/上移.ms | 45 ++++ data/magic-api/api/后台/组织机构/下移.ms | 45 ++++ data/magic-api/api/后台/组织机构/保存.ms | 26 ++ data/magic-api/api/后台/组织机构/列表.ms | 30 +++ data/magic-api/api/后台/组织机构/删除.ms | 97 +++++++ .../magic-api/api/后台/组织机构/获取排序号.ms | 38 +++ data/magic-api/api/后台/菜单管理/上移.ms | 45 ++++ data/magic-api/api/后台/菜单管理/下移.ms | 45 ++++ .../magic-api/api/后台/菜单管理/获取排序号.ms | 8 +- .../components/Psyduck/pd-table-column.vue | 2 +- magic-boot-ui/src/icons/svg/office.svg | 1 + magic-boot-ui/src/main.js | 3 + magic-boot-ui/src/scripts/treeTable.js | 82 ++++++ .../src/views/system/menu/menu-list.vue | 196 +++++++-------- .../src/views/system/office/office-list.vue | 236 ++++++++++++++---- 16 files changed, 759 insertions(+), 150 deletions(-) create mode 100644 data/magic-api/api/后台/组织机构/group.json create mode 100644 data/magic-api/api/后台/组织机构/上移.ms create mode 100644 data/magic-api/api/后台/组织机构/下移.ms create mode 100644 data/magic-api/api/后台/组织机构/保存.ms create mode 100644 data/magic-api/api/后台/组织机构/列表.ms create mode 100644 data/magic-api/api/后台/组织机构/删除.ms create mode 100644 data/magic-api/api/后台/组织机构/获取排序号.ms create mode 100644 data/magic-api/api/后台/菜单管理/上移.ms create mode 100644 data/magic-api/api/后台/菜单管理/下移.ms create mode 100644 magic-boot-ui/src/icons/svg/office.svg create mode 100644 magic-boot-ui/src/scripts/treeTable.js diff --git a/data/magic-api/api/后台/组织机构/group.json b/data/magic-api/api/后台/组织机构/group.json new file mode 100644 index 0000000..e5af983 --- /dev/null +++ b/data/magic-api/api/后台/组织机构/group.json @@ -0,0 +1,10 @@ +{ + "properties" : { }, + "id" : "8295fc13678d4144bf7363c465247a50", + "name" : "组织机构", + "type" : "1", + "parentId" : "02df51e4d7184780a98b632f43dc5848", + "path" : "/office", + "paths" : [ ], + "options" : [ ] +} \ No newline at end of file diff --git a/data/magic-api/api/后台/组织机构/上移.ms b/data/magic-api/api/后台/组织机构/上移.ms new file mode 100644 index 0000000..301c62f --- /dev/null +++ b/data/magic-api/api/后台/组织机构/上移.ms @@ -0,0 +1,45 @@ +{ + "properties" : { }, + "id" : "37aaae0a84ce4e00ad4f89d704d3cb51", + "script" : null, + "groupId" : "8295fc13678d4144bf7363c465247a50", + "name" : "上移", + "createTime" : null, + "updateTime" : 1641732205207, + "lock" : "0", + "method" : "GET", + "path" : "/sort/up", + "parameters" : [ ], + "option" : "[]", + "requestBody" : "", + "headers" : [ ], + "paths" : [ ], + "responseBody" : null, + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : null, + "optionMap" : { } +} +================================ +var top = db.selectOne(""" + SELECT + id, + sort + FROM + sys_office + WHERE + is_del = 0 + AND pid = #{pid} + AND sort < ( SELECT sort FROM sys_office WHERE is_del = 0 AND id = #{id} ) + ORDER BY + sort DESC + LIMIT 1 +""") +if(top){ + db.update(""" + update sys_office set sort = #{top.sort} where id = #{id} + """) + db.update(""" + update sys_office set sort = #{sort} where id = #{top.id} + """) +} \ No newline at end of file diff --git a/data/magic-api/api/后台/组织机构/下移.ms b/data/magic-api/api/后台/组织机构/下移.ms new file mode 100644 index 0000000..f0efa49 --- /dev/null +++ b/data/magic-api/api/后台/组织机构/下移.ms @@ -0,0 +1,45 @@ +{ + "properties" : { }, + "id" : "5f8edf5b8045475f92049270bcf0739a", + "script" : null, + "groupId" : "8295fc13678d4144bf7363c465247a50", + "name" : "下移", + "createTime" : null, + "updateTime" : 1641737498723, + "lock" : "0", + "method" : "GET", + "path" : "/sort/down", + "parameters" : [ ], + "option" : "[]", + "requestBody" : "", + "headers" : [ ], + "paths" : [ ], + "responseBody" : null, + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : null, + "optionMap" : { } +} +================================ +var top = db.selectOne(""" + SELECT + id, + sort + FROM + sys_office + WHERE + is_del = 0 + AND pid = #{pid} + AND sort > ( SELECT sort FROM sys_office WHERE is_del = 0 AND id = #{id} ) + ORDER BY + sort + LIMIT 1 +""") +if(top){ + db.update(""" + update sys_office set sort = #{top.sort} where id = #{id} + """) + db.update(""" + update sys_office set sort = #{sort} where id = #{top.id} + """) +} \ No newline at end of file diff --git a/data/magic-api/api/后台/组织机构/保存.ms b/data/magic-api/api/后台/组织机构/保存.ms new file mode 100644 index 0000000..7416011 --- /dev/null +++ b/data/magic-api/api/后台/组织机构/保存.ms @@ -0,0 +1,26 @@ +{ + "properties" : { }, + "id" : "03c2c9614e5b47f48f61f4f7759fe353", + "script" : null, + "groupId" : "8295fc13678d4144bf7363c465247a50", + "name" : "保存", + "createTime" : null, + "updateTime" : 1641732020139, + "lock" : "0", + "method" : "POST", + "path" : "/save", + "parameters" : [ ], + "option" : "[{\"name\":\"wrap_request_parameter\",\"value\":\"data\",\"description\":\"包装请求参数到一个变量中\"}]", + "requestBody" : "{}", + "headers" : [ ], + "paths" : [ ], + "responseBody" : null, + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : null, + "optionMap" : { + "wrap_request_parameter" : "data" + } +} +================================ +return db.table("sys_office").primary("id").saveOrUpdate(data); \ No newline at end of file diff --git a/data/magic-api/api/后台/组织机构/列表.ms b/data/magic-api/api/后台/组织机构/列表.ms new file mode 100644 index 0000000..713d683 --- /dev/null +++ b/data/magic-api/api/后台/组织机构/列表.ms @@ -0,0 +1,30 @@ +{ + "properties" : { }, + "id" : "f7fa03a5d8b64dbaa39387c185a21adb", + "script" : null, + "groupId" : "8295fc13678d4144bf7363c465247a50", + "name" : "列表", + "createTime" : null, + "updateTime" : 1641731964401, + "lock" : "0", + "method" : "GET", + "path" : "/tree", + "parameters" : [ ], + "option" : "[]", + "requestBody" : "", + "headers" : [ ], + "paths" : [ ], + "responseBody" : null, + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : null, + "optionMap" : { } +} +================================ +var toTree = (list,pid) => select t.*,toTree(list,t.id) children from list t where t.pid = pid +var list = toTree(db.select('select id,name,pid,type,sort,code from sys_office where is_del = 0 order by sort'),'0') + +return { + list: list, + total: list.getLength() +} \ No newline at end of file diff --git a/data/magic-api/api/后台/组织机构/删除.ms b/data/magic-api/api/后台/组织机构/删除.ms new file mode 100644 index 0000000..ae09ee3 --- /dev/null +++ b/data/magic-api/api/后台/组织机构/删除.ms @@ -0,0 +1,97 @@ +{ + "properties" : { }, + "id" : "4f2140a0d177450da2f27e4569afb7b8", + "script" : null, + "groupId" : "8295fc13678d4144bf7363c465247a50", + "name" : "删除", + "createTime" : null, + "updateTime" : 1641732068899, + "lock" : "0", + "method" : "POST", + "path" : "/delete", + "parameters" : [ ], + "option" : "[]", + "requestBody" : "{\r\n\t\r\n}", + "headers" : [ ], + "paths" : [ ], + "responseBody" : "{\n \"code\": 200,\n \"message\": \"success\",\n \"data\": null,\n \"timestamp\": 1641201245421,\n \"executeTime\": 7\n}", + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : { + "name" : "", + "value" : "", + "description" : "", + "required" : false, + "dataType" : "Object", + "type" : null, + "defaultValue" : null, + "validateType" : "", + "error" : "", + "expression" : "", + "children" : [ { + "name" : "code", + "value" : "200", + "description" : "", + "required" : false, + "dataType" : "Integer", + "type" : null, + "defaultValue" : null, + "validateType" : "", + "error" : "", + "expression" : "", + "children" : [ ] + }, { + "name" : "message", + "value" : "success", + "description" : "", + "required" : false, + "dataType" : "String", + "type" : null, + "defaultValue" : null, + "validateType" : "", + "error" : "", + "expression" : "", + "children" : [ ] + }, { + "name" : "data", + "value" : "null", + "description" : "", + "required" : false, + "dataType" : "Object", + "type" : null, + "defaultValue" : null, + "validateType" : "", + "error" : "", + "expression" : "", + "children" : [ ] + }, { + "name" : "timestamp", + "value" : "1641201245421", + "description" : "", + "required" : false, + "dataType" : "Long", + "type" : null, + "defaultValue" : null, + "validateType" : "", + "error" : "", + "expression" : "", + "children" : [ ] + }, { + "name" : "executeTime", + "value" : "7", + "description" : "", + "required" : false, + "dataType" : "Integer", + "type" : null, + "defaultValue" : null, + "validateType" : "", + "error" : "", + "expression" : "", + "children" : [ ] + } ] + }, + "optionMap" : { } +} +================================ +// db.table('sys_user_office').where().eq("office_id",id).delete(); +return db.table("sys_office").logic().where().eq("id",id).delete(); \ No newline at end of file diff --git a/data/magic-api/api/后台/组织机构/获取排序号.ms b/data/magic-api/api/后台/组织机构/获取排序号.ms new file mode 100644 index 0000000..32ecc29 --- /dev/null +++ b/data/magic-api/api/后台/组织机构/获取排序号.ms @@ -0,0 +1,38 @@ +{ + "properties" : { }, + "id" : "f6e998eaff2c49be807fcb38a1a7d55b", + "script" : null, + "groupId" : "8295fc13678d4144bf7363c465247a50", + "name" : "获取排序号", + "createTime" : null, + "updateTime" : 1641732159522, + "lock" : "0", + "method" : "GET", + "path" : "/sort", + "parameters" : [ { + "name" : "pid", + "value" : "", + "description" : "", + "required" : true, + "dataType" : "String", + "type" : null, + "defaultValue" : null, + "validateType" : null, + "error" : null, + "expression" : null, + "children" : null + } ], + "option" : "[]", + "requestBody" : "", + "headers" : [ ], + "paths" : [ ], + "responseBody" : null, + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : null, + "optionMap" : { } +} +================================ +return db.selectInt(""" + select max(sort) + 10 from sys_office where pid = #{pid} and is_del = '0' +""") || 10; \ No newline at end of file diff --git a/data/magic-api/api/后台/菜单管理/上移.ms b/data/magic-api/api/后台/菜单管理/上移.ms new file mode 100644 index 0000000..5ab9b14 --- /dev/null +++ b/data/magic-api/api/后台/菜单管理/上移.ms @@ -0,0 +1,45 @@ +{ + "properties" : { }, + "id" : "9817f2dbbc20419298e07bc644387f91", + "script" : null, + "groupId" : "67b2ce258e24491194b74992958c74aa", + "name" : "上移", + "createTime" : null, + "updateTime" : 1641564601649, + "lock" : "0", + "method" : "GET", + "path" : "/sort/up", + "parameters" : [ ], + "option" : "[]", + "requestBody" : "", + "headers" : [ ], + "paths" : [ ], + "responseBody" : null, + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : null, + "optionMap" : { } +} +================================ +var top = db.selectOne(""" + SELECT + id, + sort + FROM + sys_menu + WHERE + is_del = 0 + AND pid = #{pid} + AND sort < ( SELECT sort FROM sys_menu WHERE is_del = 0 AND id = #{id} ) + ORDER BY + sort DESC + LIMIT 1 +""") +if(top){ + db.update(""" + update sys_menu set sort = #{top.sort} where id = #{id} + """) + db.update(""" + update sys_menu set sort = #{sort} where id = #{top.id} + """) +} \ No newline at end of file diff --git a/data/magic-api/api/后台/菜单管理/下移.ms b/data/magic-api/api/后台/菜单管理/下移.ms new file mode 100644 index 0000000..a3ac1c7 --- /dev/null +++ b/data/magic-api/api/后台/菜单管理/下移.ms @@ -0,0 +1,45 @@ +{ + "properties" : { }, + "id" : "77d393db826d4ba882b7c4b1d32e2e98", + "script" : null, + "groupId" : "67b2ce258e24491194b74992958c74aa", + "name" : "下移", + "createTime" : null, + "updateTime" : 1641564596885, + "lock" : "0", + "method" : "GET", + "path" : "/sort/down", + "parameters" : [ ], + "option" : "[]", + "requestBody" : "", + "headers" : [ ], + "paths" : [ ], + "responseBody" : null, + "description" : null, + "requestBodyDefinition" : null, + "responseBodyDefinition" : null, + "optionMap" : { } +} +================================ +var top = db.selectOne(""" + SELECT + id, + sort + FROM + sys_menu + WHERE + is_del = 0 + AND pid = #{pid} + AND sort > ( SELECT sort FROM sys_menu WHERE is_del = 0 AND id = #{id} ) + ORDER BY + sort + LIMIT 1 +""") +if(top){ + db.update(""" + update sys_menu set sort = #{top.sort} where id = #{id} + """) + db.update(""" + update sys_menu set sort = #{sort} where id = #{top.id} + """) +} \ No newline at end of file diff --git a/data/magic-api/api/后台/菜单管理/获取排序号.ms b/data/magic-api/api/后台/菜单管理/获取排序号.ms index b5fd206..6ca6a71 100644 --- a/data/magic-api/api/后台/菜单管理/获取排序号.ms +++ b/data/magic-api/api/后台/菜单管理/获取排序号.ms @@ -4,8 +4,8 @@ "script" : null, "groupId" : "67b2ce258e24491194b74992958c74aa", "name" : "获取排序号", - "createTime" : 1634724871167, - "updateTime" : 1634724871167, + "createTime" : null, + "updateTime" : 1641732167291, "lock" : "0", "method" : "GET", "path" : "/sort", @@ -33,4 +33,6 @@ "optionMap" : { } } ================================ -return db.selectInt("""select max(sort) + 10 from sys_menu where pid = #{pid} and is_del = '0'""") || 10; \ No newline at end of file +return db.selectInt(""" + select max(sort) + 10 from sys_menu where pid = #{pid} and is_del = '0' +""") || 10; \ No newline at end of file diff --git a/magic-boot-ui/src/components/Psyduck/pd-table-column.vue b/magic-boot-ui/src/components/Psyduck/pd-table-column.vue index 2b17896..3a6bd93 100644 --- a/magic-boot-ui/src/components/Psyduck/pd-table-column.vue +++ b/magic-boot-ui/src/components/Psyduck/pd-table-column.vue @@ -23,7 +23,7 @@ />
diff --git a/magic-boot-ui/src/icons/svg/office.svg b/magic-boot-ui/src/icons/svg/office.svg new file mode 100644 index 0000000..21b749f --- /dev/null +++ b/magic-boot-ui/src/icons/svg/office.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/magic-boot-ui/src/main.js b/magic-boot-ui/src/main.js index 64ab65b..be59908 100644 --- a/magic-boot-ui/src/main.js +++ b/magic-boot-ui/src/main.js @@ -22,6 +22,9 @@ Vue.use(elDragDialog) import common from '@/scripts/common' Vue.prototype.$common = common +import treeTable from '@/scripts/treeTable' +Vue.prototype.$treeTable = treeTable + import request from '@/scripts/request' Vue.prototype.$request = request Vue.prototype.$post = (url, data) => request.post(url, data, { diff --git a/magic-boot-ui/src/scripts/treeTable.js b/magic-boot-ui/src/scripts/treeTable.js new file mode 100644 index 0000000..3223eda --- /dev/null +++ b/magic-boot-ui/src/scripts/treeTable.js @@ -0,0 +1,82 @@ +import common from "@/scripts/common"; + +const treeTable = {} + +treeTable.isChildren = (children, id) => { + var result = false + for(var i in children) { + var chi = children[i] + if(chi.id == id){ + result = true + } + if(chi.children && children.length > 0){ + if(treeTable.isChildren(chi.children, id)){ + result = true + } + } + } + return result +} + +treeTable.queryChildren = (children, id) => { + var result = [] + for(var i in children){ + var chi = children[i] + if(chi.id == id){ + if(chi.children && chi.children.length > 0){ + result = chi.children + } + }else{ + var qc = treeTable.queryChildren(chi.children, id) + if(qc.length > 0){ + result = qc + } + } + } + return result +} + +treeTable.genTree = (children) => { + var treeData = [] + for(var i in children){ + var chi = {} + chi.label = children[i].name + chi.id = children[i].id + if(children[i].children && children[i].children.length > 0){ + chi.children = treeTable.genTree(children[i].children) + } + treeData.push(chi) + } + return treeData +} + +treeTable.recursionSearch = (fields, data, text) => { + var searchData = [] + for(var i in data){ + var treeNode = data[i] + var children = treeNode.children + if(children && children.length > 0){ + var childrenSearch = treeTable.recursionSearch(fields, children, text) + treeNode.children = childrenSearch && childrenSearch.length > 0 ? childrenSearch : treeNode.children + treeTable.treeNodeReplace(fields, searchData, treeNode, text, childrenSearch) + }else{ + treeTable.treeNodeReplace(fields, searchData, treeNode, text) + } + } + return searchData +} + +treeTable.treeNodeReplace = (fields, searchData, treeNode, text, childrenSearch) => { + var exist = false + fields.forEach((f) => { + if(treeNode[f] && treeNode[f].indexOf(text) != -1){ + treeNode[f] = treeNode[f].replace(text, `${text}`) + exist = true + } + }) + if(exist || (childrenSearch && childrenSearch.length > 0)){ + searchData.push(treeNode) + } +} + +export default treeTable diff --git a/magic-boot-ui/src/views/system/menu/menu-list.vue b/magic-boot-ui/src/views/system/menu/menu-list.vue index 61dc97d..9b3870e 100644 --- a/magic-boot-ui/src/views/system/menu/menu-list.vue +++ b/magic-boot-ui/src/views/system/menu/menu-list.vue @@ -1,3 +1,9 @@ + +