diff --git a/src/assets/svg/base.svg b/src/assets/svg/base.svg new file mode 100644 index 0000000..f1e2ede --- /dev/null +++ b/src/assets/svg/base.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/svg/template.svg b/src/assets/svg/template.svg new file mode 100644 index 0000000..09b663d --- /dev/null +++ b/src/assets/svg/template.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pages/System/Tools/index.tsx b/src/pages/System/Tools/index.tsx new file mode 100644 index 0000000..0f205de --- /dev/null +++ b/src/pages/System/Tools/index.tsx @@ -0,0 +1,5 @@ +const Tools = () => { + return <> +} + +export default Tools diff --git a/src/router/system.tsx b/src/router/system.tsx index 3c0a0b3..1cdac3d 100644 --- a/src/router/system.tsx +++ b/src/router/system.tsx @@ -30,6 +30,16 @@ const system: RouteJsonObject[] = [ menu: true, autoHide: true }, + { + path: 'tools', + absolutePath: '/system/tools', + id: 'system-tools', + component: lazy(() => import('@/pages/System/Tools')), + name: '工具配置', + icon: lazy(() => import('~icons/oxygen/tool')), + menu: true, + autoHide: true + }, { path: 'user', absolutePath: '/system/user',