From 3a46a3f505c377c74ee30fe36ea242769e3a6063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=95=E9=87=91=E6=B3=BD?= <1098696801@qq.com> Date: Mon, 17 Jan 2022 00:26:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/后台/菜单管理/搜索菜单数据.ms | 30 ---------------- magic-boot-ui/package.json | 2 +- .../src/components/Psyduck/pd-table.vue | 6 ++++ .../src/components/Psyduck/pd-tree.vue | 6 +++- magic-boot-ui/src/icons/svg/fullscreen.svg | 1 + magic-boot-ui/src/icons/svg/search.svg | 1 + .../src/layout/components/AppMain.vue | 4 ++- .../src/layout/components/Navbar.vue | 3 +- .../src/layout/components/Sidebar/index.vue | 36 ++----------------- magic-boot-ui/src/styles/common.css | 3 ++ magic-boot-ui/src/styles/index.scss | 3 ++ .../system/role/role-assign-permissions.vue | 2 +- .../src/views/system/role/role-list.vue | 2 +- .../src/views/system/user/user-form.vue | 8 ++++- .../src/views/system/user/user-list.vue | 6 ++-- 15 files changed, 41 insertions(+), 72 deletions(-) delete mode 100644 data/magic-api/api/后台/菜单管理/搜索菜单数据.ms create mode 100644 magic-boot-ui/src/icons/svg/fullscreen.svg create mode 100644 magic-boot-ui/src/icons/svg/search.svg diff --git a/data/magic-api/api/后台/菜单管理/搜索菜单数据.ms b/data/magic-api/api/后台/菜单管理/搜索菜单数据.ms deleted file mode 100644 index 68c088a..0000000 --- a/data/magic-api/api/后台/菜单管理/搜索菜单数据.ms +++ /dev/null @@ -1,30 +0,0 @@ -{ - "properties" : { }, - "id" : "0adb88c728814db88b901701faa56161", - "script" : null, - "groupId" : "67b2ce258e24491194b74992958c74aa", - "name" : "搜索菜单数据", - "createTime" : null, - "updateTime" : 1641828392961, - "lock" : "0", - "method" : "GET", - "path" : "/search", - "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 as label,pid,url from sys_menu where is_del = 0 and is_show = 1 order by sort'),'0') - -return { - list: list, - total: list.getLength() -} \ No newline at end of file diff --git a/magic-boot-ui/package.json b/magic-boot-ui/package.json index 9b4245d..2996266 100644 --- a/magic-boot-ui/package.json +++ b/magic-boot-ui/package.json @@ -17,7 +17,7 @@ "@riophae/vue-treeselect": "^0.4.0", "axios": "^0.24.0", "drag-tree-table": "2.2.0", - "element-ui": "2.13.0", + "element-ui": "2.15.7", "file-saver": "2.0.1", "fuse.js": "3.4.4", "jquery": "^1.7.2", diff --git a/magic-boot-ui/src/components/Psyduck/pd-table.vue b/magic-boot-ui/src/components/Psyduck/pd-table.vue index 473a497..8af7d99 100644 --- a/magic-boot-ui/src/components/Psyduck/pd-table.vue +++ b/magic-boot-ui/src/components/Psyduck/pd-table.vue @@ -27,6 +27,8 @@ + + @@ -88,6 +90,10 @@ export default { default: () => { return [] } + }, + emptyText: { + type: String, + default: '暂无数据' } }, data() { diff --git a/magic-boot-ui/src/components/Psyduck/pd-tree.vue b/magic-boot-ui/src/components/Psyduck/pd-tree.vue index ace7014..896e5a8 100644 --- a/magic-boot-ui/src/components/Psyduck/pd-tree.vue +++ b/magic-boot-ui/src/components/Psyduck/pd-tree.vue @@ -5,7 +5,7 @@ 全选/全不选
- +
\ No newline at end of file diff --git a/magic-boot-ui/src/icons/svg/search.svg b/magic-boot-ui/src/icons/svg/search.svg new file mode 100644 index 0000000..84233dd --- /dev/null +++ b/magic-boot-ui/src/icons/svg/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/magic-boot-ui/src/layout/components/AppMain.vue b/magic-boot-ui/src/layout/components/AppMain.vue index 8dcca10..900ba50 100644 --- a/magic-boot-ui/src/layout/components/AppMain.vue +++ b/magic-boot-ui/src/layout/components/AppMain.vue @@ -24,7 +24,8 @@ export default { min-height: calc(100vh - 50px); width: 100%; position: relative; - overflow: hidden; + overflow: auto; + background: #F0F2F5; } .fixed-header+.app-main { @@ -35,6 +36,7 @@ export default { .app-main { /* 84 = navbar + tags-view = 50 + 34 */ min-height: calc(100vh - 84px); + height: calc(100vh - 84px); } .fixed-header+.app-main { diff --git a/magic-boot-ui/src/layout/components/Navbar.vue b/magic-boot-ui/src/layout/components/Navbar.vue index 9199fec..ff7f5ef 100644 --- a/magic-boot-ui/src/layout/components/Navbar.vue +++ b/magic-boot-ui/src/layout/components/Navbar.vue @@ -17,6 +17,7 @@
+ {{ $store.getters.username }}({{ $store.getters.name }})
@@ -128,12 +129,12 @@ export default { margin-right: 30px; .avatar-wrapper { - margin-top: 5px; position: relative; .user-avatar { cursor: pointer; border-radius: 10px; + vertical-align: middle; } .el-icon-caret-bottom { diff --git a/magic-boot-ui/src/layout/components/Sidebar/index.vue b/magic-boot-ui/src/layout/components/Sidebar/index.vue index 86e19d0..1417968 100644 --- a/magic-boot-ui/src/layout/components/Sidebar/index.vue +++ b/magic-boot-ui/src/layout/components/Sidebar/index.vue @@ -7,18 +7,6 @@ - - - - - +