1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00

Modified the path and icon of role management

This commit is contained in:
2023-05-15 10:42:18 +08:00
parent 9a13c3cdc3
commit db6d0edceb
3 changed files with 7 additions and 5 deletions

View File

@@ -0,0 +1,3 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg t="1684118200318" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8130"
width="200" height="200"><path d="M912.9 130.6c-26.1 4.5-52.8 6.9-80.2 6.9-115.4 0-221.1-41.9-302.6-111.2-10.6-9-26.2-9-36.8 0-81.5 69.4-187.2 111.2-302.6 111.2-27 0-53.5-2.3-79.2-6.7-17.2-2.9-32.9 10.4-33 27.9-0.2 109.1-0.4 238.1-0.4 242.5 0 471 394.5 592.7 431 603 1.8 0.5 3.6 0.5 5.4 0C550.9 994 943 873 945.5 405.7l0.4-247c0-17.6-15.8-31.1-33-28.1zM546 568.9v154.5c0 18.8-15.2 34-34 34s-34-15.2-34-34V568.9c-68.2-15.5-119.1-76.4-119.1-149.3 0-84.5 68.5-153.1 153.1-153.1S665.1 335 665.1 419.6c0 72.9-50.9 133.9-119.1 149.3z" p-id="8131" /></svg>

After

Width:  |  Height:  |  Size: 811 B

View File

@@ -181,14 +181,13 @@ const router = createRouter({
] ]
}, },
{ {
path: '/system', path: '/power',
name: 'systemManagement', name: 'systemManagement',
children: [ children: [
{ {
path: 'role', path: 'role',
name: 'systemRole', name: 'systemRole',
component: async () => component: async () => await import('@/pages/power/RoleManagement.vue'),
await import('@/pages/system/RoleManagement.vue'),
meta: { meta: {
title: '角色管理', title: '角色管理',
requiresScrollbar: false, requiresScrollbar: false,
@@ -197,8 +196,8 @@ const router = createRouter({
} }
], ],
meta: { meta: {
title: '系统管理', title: '权限管理',
icon: shallowRef(IconPinnacleSetting), icon: shallowRef(IconPinnaclePower),
requiresScrollbar: false, requiresScrollbar: false,
requiresPadding: true requiresPadding: true
} }