feat: 新增导航目录
This commit is contained in:
28
.umirc.ts
28
.umirc.ts
@@ -12,7 +12,6 @@ export default defineConfig({
|
|||||||
title: '五味子云存储',
|
title: '五味子云存储',
|
||||||
},
|
},
|
||||||
base: '/',
|
base: '/',
|
||||||
browserslist: ['> 1%', 'last 2 versions'],
|
|
||||||
routes: [
|
routes: [
|
||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
@@ -38,6 +37,33 @@ export default defineConfig({
|
|||||||
path: '/table',
|
path: '/table',
|
||||||
component: './Table',
|
component: './Table',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: ' 用户配置',
|
||||||
|
path: '/user',
|
||||||
|
component: './User',
|
||||||
|
routes: [
|
||||||
|
{
|
||||||
|
name: ' 用户表',
|
||||||
|
path: '/Users',
|
||||||
|
component: './Users',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: ' 角色表',
|
||||||
|
path: '/Role',
|
||||||
|
component: './Role',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: ' 权限表',
|
||||||
|
path: '/Permission',
|
||||||
|
component: './Permission',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: ' 社会用户信息表',
|
||||||
|
path: '/Social',
|
||||||
|
component: './Social',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
],
|
],
|
||||||
npmClient: 'yarn',
|
npmClient: 'yarn',
|
||||||
});
|
});
|
||||||
|
18612
package-lock.json
generated
Normal file
18612
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -14,7 +14,8 @@
|
|||||||
"@ant-design/icons": "^5.0.1",
|
"@ant-design/icons": "^5.0.1",
|
||||||
"@ant-design/pro-components": "^2.4.4",
|
"@ant-design/pro-components": "^2.4.4",
|
||||||
"@umijs/max": "^4.3.1",
|
"@umijs/max": "^4.3.1",
|
||||||
"antd": "^5.4.0"
|
"antd": "^5.4.0",
|
||||||
|
"yarn": "^1.22.22"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/react": "^18.0.33",
|
"@types/react": "^18.0.33",
|
||||||
|
0
src/pages/User/Permission/components/CreateForm.tsx
Normal file
0
src/pages/User/Permission/components/CreateForm.tsx
Normal file
0
src/pages/User/Permission/components/UpdateForm.tsx
Normal file
0
src/pages/User/Permission/components/UpdateForm.tsx
Normal file
0
src/pages/User/Permission/permission.tsx
Normal file
0
src/pages/User/Permission/permission.tsx
Normal file
0
src/pages/User/Role/components/CreateForm.tsx
Normal file
0
src/pages/User/Role/components/CreateForm.tsx
Normal file
0
src/pages/User/Role/components/UpdateForm.tsx
Normal file
0
src/pages/User/Role/components/UpdateForm.tsx
Normal file
0
src/pages/User/Role/role.tsx
Normal file
0
src/pages/User/Role/role.tsx
Normal file
0
src/pages/User/Social/components/CreateForm.tsx
Normal file
0
src/pages/User/Social/components/CreateForm.tsx
Normal file
1
src/pages/User/Social/components/UpdateForm.tsx
Normal file
1
src/pages/User/Social/components/UpdateForm.tsx
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
0
src/pages/User/Social/social.tsx
Normal file
0
src/pages/User/Social/social.tsx
Normal file
0
src/pages/User/Users/components/CreateForm.tsx
Normal file
0
src/pages/User/Users/components/CreateForm.tsx
Normal file
0
src/pages/User/Users/components/UpdateForm.tsx
Normal file
0
src/pages/User/Users/components/UpdateForm.tsx
Normal file
0
src/pages/User/Users/users.tsx
Normal file
0
src/pages/User/Users/users.tsx
Normal file
Reference in New Issue
Block a user