-
+
+
+
+ }
+ >
{user.map((value) => {
return value.menu ? (
diff --git a/src/router/system.tsx b/src/router/system.tsx
new file mode 100644
index 0000000..23ce4ae
--- /dev/null
+++ b/src/router/system.tsx
@@ -0,0 +1,19 @@
+import React from 'react'
+
+const user: RouteJsonObject[] = [
+ {
+ path: '',
+ absolutePath: '/system',
+ id: 'system',
+ name: '系统设置',
+ icon: React.lazy(() => import('~icons/fatweb/setting.jsx')),
+ menu: true
+ },
+ {
+ path: '*',
+ absolutePath: '*',
+ element:
+ }
+]
+
+export default user