mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
fix: Refactor initialize.py to handle nested children data during initialization feat: Implement tree structure traversal functions in common_util.py chore: Update requirements.txt to specify sqlalchemy-crud-plus version and add rich refactor: Change API endpoints in dept.ts and menu.ts to return tree structure feat: Add code field to role, dept, and menu interfaces in respective TypeScript files fix: Update dept and role Vue components to display and handle code field docs: Add comprehensive project documentation for FastAPI Vue3 Admin
32 lines
884 B
JSON
32 lines
884 B
JSON
[
|
|
{
|
|
"username": "admin",
|
|
"password": "$2b$12$e2IJgS/cvHgJ0H3G7Xa08OXoXnk6N/NX3IZRtubBDElA0VLZhkNOa",
|
|
"name": "管理员",
|
|
"mobile": "15382112222",
|
|
"email": "admin@qq.com",
|
|
"gender": "0",
|
|
"avatar": "https://service.fastapiadmin.com/api/v1/static/image/avatar.png",
|
|
"status": true,
|
|
"is_superuser": true,
|
|
"last_login": null,
|
|
"dept_id": 1,
|
|
"description": "管理员",
|
|
"creator_id": null
|
|
},
|
|
{
|
|
"username": "demo",
|
|
"password": "$2b$12$e2IJgS/cvHgJ0H3G7Xa08OXoXnk6N/NX3IZRtubBDElA0VLZhkNOa",
|
|
"name": "演示用户",
|
|
"mobile": "15382112121",
|
|
"email": "demo@qq.com",
|
|
"gender": "0",
|
|
"avatar": "https://service.fastapiadmin.com/api/v1/static/image/avatar.png",
|
|
"status": true,
|
|
"is_superuser": false,
|
|
"last_login": null,
|
|
"dept_id": 1,
|
|
"description": "演示用户",
|
|
"creator_id": 1
|
|
}
|
|
] |