├── .gitignore ├── LICENSE ├── README.md ├── dash-fastapi-backend ├── .env.dev ├── .env.prod ├── app.py ├── assets │ └── font │ │ └── Arial.ttf ├── config │ ├── constant.py │ ├── database.py │ ├── enums.py │ ├── env.py │ ├── get_db.py │ ├── get_redis.py │ └── get_scheduler.py ├── exceptions │ ├── exception.py │ └── handle.py ├── middlewares │ ├── cors_middleware.py │ ├── gzip_middleware.py │ └── handle.py ├── module_admin │ ├── annotation │ │ ├── log_annotation.py │ │ └── pydantic_annotation.py │ ├── aspect │ │ ├── data_scope.py │ │ └── interface_auth.py │ ├── controller │ │ ├── cache_controller.py │ │ ├── captcha_controller.py │ │ ├── common_controller.py │ │ ├── config_controller.py │ │ ├── dept_controller.py │ │ ├── dict_controller.py │ │ ├── job_controller.py │ │ ├── log_controller.py │ │ ├── login_controller.py │ │ ├── menu_controller.py │ │ ├── notice_controller.py │ │ ├── online_controller.py │ │ ├── post_controler.py │ │ ├── role_controller.py │ │ ├── server_controller.py │ │ └── user_controller.py │ ├── dao │ │ ├── config_dao.py │ │ ├── dept_dao.py │ │ ├── dict_dao.py │ │ ├── job_dao.py │ │ ├── job_log_dao.py │ │ ├── log_dao.py │ │ ├── login_dao.py │ │ ├── menu_dao.py │ │ ├── notice_dao.py │ │ ├── post_dao.py │ │ ├── role_dao.py │ │ └── user_dao.py │ ├── entity │ │ ├── do │ │ │ ├── config_do.py │ │ │ ├── dept_do.py │ │ │ ├── dict_do.py │ │ │ ├── job_do.py │ │ │ ├── log_do.py │ │ │ ├── menu_do.py │ │ │ ├── notice_do.py │ │ │ ├── post_do.py │ │ │ ├── role_do.py │ │ │ └── user_do.py │ │ └── vo │ │ │ ├── cache_vo.py │ │ │ ├── common_vo.py │ │ │ ├── config_vo.py │ │ │ ├── dept_vo.py │ │ │ ├── dict_vo.py │ │ │ ├── job_vo.py │ │ │ ├── log_vo.py │ │ │ ├── login_vo.py │ │ │ ├── menu_vo.py │ │ │ ├── notice_vo.py │ │ │ ├── online_vo.py │ │ │ ├── post_vo.py │ │ │ ├── role_vo.py │ │ │ ├── server_vo.py │ │ │ └── user_vo.py │ └── service │ │ ├── cache_service.py │ │ ├── captcha_service.py │ │ ├── common_service.py │ │ ├── config_service.py │ │ ├── dept_service.py │ │ ├── dict_service.py │ │ ├── job_log_service.py │ │ ├── job_service.py │ │ ├── log_service.py │ │ ├── login_service.py │ │ ├── menu_service.py │ │ ├── notice_service.py │ │ ├── online_service.py │ │ ├── post_service.py │ │ ├── role_service.py │ │ ├── server_service.py │ │ └── user_service.py ├── module_task │ ├── __init__.py │ └── scheduler_test.py ├── ruff.toml ├── server.py ├── sql │ ├── dash-fastapi-pg.sql │ └── dash-fastapi.sql ├── sub_applications │ ├── handle.py │ └── staticfiles.py └── utils │ ├── common_util.py │ ├── cron_util.py │ ├── log_util.py │ ├── message_util.py │ ├── page_util.py │ ├── pwd_util.py │ ├── response_util.py │ ├── string_util.py │ ├── time_format_util.py │ └── upload_util.py ├── dash-fastapi-frontend ├── .env.dev ├── .env.prod ├── api │ ├── forget.py │ ├── login.py │ ├── monitor │ │ ├── cache.py │ │ ├── job.py │ │ ├── job_log.py │ │ ├── logininfor.py │ │ ├── online.py │ │ ├── operlog.py │ │ └── server.py │ ├── register.py │ ├── router.py │ └── system │ │ ├── config.py │ │ ├── dept.py │ │ ├── dict │ │ ├── data.py │ │ └── type.py │ │ ├── menu.py │ │ ├── notice.py │ │ ├── post.py │ │ ├── role.py │ │ └── user.py ├── app.py ├── assets │ ├── css │ │ └── global.css │ ├── favicon.ico │ ├── imgs │ │ ├── background.png │ │ ├── loading.webp │ │ ├── logo.png │ │ └── profile.jpg │ └── js │ │ ├── cache_control_echarts_callbacks.js │ │ ├── echarts.min.js │ │ ├── js.cookie.min.js │ │ ├── jsencrypt.min.js │ │ ├── jsencrypt_func.js │ │ └── utils.js ├── callbacks │ ├── app_c.py │ ├── forget_c.py │ ├── innnerlink_c.py │ ├── layout_c │ │ ├── aside_c.py │ │ ├── fold_side_menu.py │ │ ├── head_c.py │ │ └── index_c.py │ ├── login_c.py │ ├── monitor_c │ │ ├── cache_c │ │ │ ├── control_c.py │ │ │ └── list_c.py │ │ ├── job_c │ │ │ ├── job_c.py │ │ │ └── job_log_c.py │ │ ├── logininfor_c.py │ │ ├── online_c.py │ │ └── operlog_c.py │ ├── register_c.py │ ├── router_c.py │ └── system_c │ │ ├── config_c.py │ │ ├── dept_c.py │ │ ├── dict_c │ │ ├── dict_c.py │ │ └── dict_data_c.py │ │ ├── menu_c │ │ ├── components_c │ │ │ ├── button_type_c.py │ │ │ ├── content_type_c.py │ │ │ └── menu_type_c.py │ │ └── menu_c.py │ │ ├── notice_c.py │ │ ├── post_c.py │ │ ├── role_c │ │ ├── allocate_user_c.py │ │ ├── data_scope_c.py │ │ └── role_c.py │ │ └── user_c │ │ ├── allocate_role_c.py │ │ ├── profile_c │ │ ├── avatar_c.py │ │ ├── reset_pwd_c.py │ │ └── user_info_c.py │ │ └── user_c.py ├── components │ ├── ApiRadioGroup │ │ └── __init__.py │ ├── ApiSelect │ │ └── __init__.py │ ├── ManuallyUpload │ │ └── __init__.py │ └── __init__.py ├── config │ ├── constant.py │ ├── enums.py │ ├── env.py │ ├── exception.py │ └── router.py ├── ruff.toml ├── server.py ├── store │ └── store.py ├── utils │ ├── cache_util.py │ ├── common_util.py │ ├── dict_util.py │ ├── feedback_util.py │ ├── log_util.py │ ├── permission_util.py │ ├── request.py │ ├── router_util.py │ ├── string_util.py │ ├── time_format_util.py │ └── tree_util.py ├── views │ ├── __init__.py │ ├── dashboard │ │ ├── __init__.py │ │ └── components │ │ │ ├── page_bottom.py │ │ │ └── page_top.py │ ├── forget.py │ ├── innerlink │ │ └── __init__.py │ ├── layout │ │ ├── __init__.py │ │ └── components │ │ │ ├── aside.py │ │ │ ├── content.py │ │ │ └── head.py │ ├── login.py │ ├── monitor │ │ ├── __init__.py │ │ ├── cache │ │ │ ├── __init__.py │ │ │ ├── control │ │ │ │ └── __init__.py │ │ │ └── list │ │ │ │ └── __init__.py │ │ ├── druid │ │ │ └── __init__.py │ │ ├── job │ │ │ ├── __init__.py │ │ │ └── job_log.py │ │ ├── logininfor │ │ │ └── __init__.py │ │ ├── online │ │ │ └── __init__.py │ │ ├── operlog │ │ │ └── __init__.py │ │ └── server │ │ │ └── __init__.py │ ├── page_404.py │ ├── register.py │ ├── system │ │ ├── __init__.py │ │ ├── config │ │ │ └── __init__.py │ │ ├── dept │ │ │ └── __init__.py │ │ ├── dict │ │ │ ├── __init__.py │ │ │ └── dict_data.py │ │ ├── menu │ │ │ ├── __init__.py │ │ │ └── components │ │ │ │ ├── __init__.py │ │ │ │ ├── button_type.py │ │ │ │ ├── content_type.py │ │ │ │ ├── icon_category.py │ │ │ │ └── menu_type.py │ │ ├── notice │ │ │ └── __init__.py │ │ ├── post │ │ │ └── __init__.py │ │ ├── role │ │ │ ├── __init__.py │ │ │ ├── allocate_user.py │ │ │ ├── component │ │ │ │ └── query_form_table.py │ │ │ └── data_scope.py │ │ └── user │ │ │ ├── __init__.py │ │ │ ├── allocate_role.py │ │ │ └── profile │ │ │ ├── __init__.py │ │ │ ├── reset_pwd.py │ │ │ ├── user_avatar.py │ │ │ └── user_info.py │ └── tool │ │ ├── __init__.py │ │ ├── build │ │ └── __init__.py │ │ ├── gen │ │ └── __init__.py │ │ └── swagger │ │ └── __init__.py └── wsgi.py ├── demo-pictures ├── dashzsxq.jpg ├── wxcode.jpg ├── zanzhu_wx.jpg ├── zanzhu_zfb.jpg ├── zsxq.jpg ├── 个人资料.png ├── 参数设置.png ├── 在线用户.png ├── 字典管理.png ├── 定时任务.png ├── 岗位管理.png ├── 忘记密码.png ├── 操作日志.png ├── 服务监控.png ├── 用户管理.png ├── 登录.png ├── 登录日志.png ├── 系统接口.png ├── 缓存列表.png ├── 缓存监控.png ├── 菜单管理.png ├── 角色管理.png ├── 通知公告.png ├── 部门管理.png └── 首页.png ├── requirements-pg.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/README.md -------------------------------------------------------------------------------- /dash-fastapi-backend/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/.env.dev -------------------------------------------------------------------------------- /dash-fastapi-backend/.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/.env.prod -------------------------------------------------------------------------------- /dash-fastapi-backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/app.py -------------------------------------------------------------------------------- /dash-fastapi-backend/assets/font/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/assets/font/Arial.ttf -------------------------------------------------------------------------------- /dash-fastapi-backend/config/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/config/constant.py -------------------------------------------------------------------------------- /dash-fastapi-backend/config/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/config/database.py -------------------------------------------------------------------------------- /dash-fastapi-backend/config/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/config/enums.py -------------------------------------------------------------------------------- /dash-fastapi-backend/config/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/config/env.py -------------------------------------------------------------------------------- /dash-fastapi-backend/config/get_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/config/get_db.py -------------------------------------------------------------------------------- /dash-fastapi-backend/config/get_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/config/get_redis.py -------------------------------------------------------------------------------- /dash-fastapi-backend/config/get_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/config/get_scheduler.py -------------------------------------------------------------------------------- /dash-fastapi-backend/exceptions/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/exceptions/exception.py -------------------------------------------------------------------------------- /dash-fastapi-backend/exceptions/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/exceptions/handle.py -------------------------------------------------------------------------------- /dash-fastapi-backend/middlewares/cors_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/middlewares/cors_middleware.py -------------------------------------------------------------------------------- /dash-fastapi-backend/middlewares/gzip_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/middlewares/gzip_middleware.py -------------------------------------------------------------------------------- /dash-fastapi-backend/middlewares/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/middlewares/handle.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/annotation/log_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/annotation/log_annotation.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/annotation/pydantic_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/annotation/pydantic_annotation.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/aspect/data_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/aspect/data_scope.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/aspect/interface_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/aspect/interface_auth.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/cache_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/cache_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/captcha_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/captcha_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/common_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/common_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/config_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/config_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/dept_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/dept_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/dict_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/dict_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/job_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/job_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/log_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/log_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/login_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/login_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/menu_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/menu_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/notice_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/notice_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/online_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/online_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/post_controler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/post_controler.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/role_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/role_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/server_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/server_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/controller/user_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/controller/user_controller.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/config_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/config_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/dept_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/dept_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/dict_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/dict_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/job_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/job_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/job_log_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/job_log_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/log_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/log_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/login_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/login_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/menu_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/menu_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/notice_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/notice_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/post_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/post_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/role_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/role_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/dao/user_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/dao/user_dao.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/config_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/config_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/dept_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/dept_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/dict_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/dict_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/job_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/job_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/log_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/log_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/menu_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/menu_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/notice_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/notice_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/post_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/post_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/role_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/role_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/do/user_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/do/user_do.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/cache_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/cache_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/common_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/common_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/config_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/config_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/dept_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/dept_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/dict_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/dict_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/job_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/job_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/log_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/log_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/login_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/login_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/menu_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/menu_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/notice_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/notice_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/online_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/online_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/post_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/post_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/role_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/role_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/server_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/server_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/entity/vo/user_vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/entity/vo/user_vo.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/cache_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/cache_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/captcha_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/captcha_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/common_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/common_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/config_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/dept_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/dept_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/dict_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/dict_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/job_log_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/job_log_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/job_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/job_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/log_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/log_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/login_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/login_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/menu_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/menu_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/notice_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/notice_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/online_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/online_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/post_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/post_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/role_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/role_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/server_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/server_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_admin/service/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_admin/service/user_service.py -------------------------------------------------------------------------------- /dash-fastapi-backend/module_task/__init__.py: -------------------------------------------------------------------------------- 1 | from . import scheduler_test # noqa: F401 2 | -------------------------------------------------------------------------------- /dash-fastapi-backend/module_task/scheduler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/module_task/scheduler_test.py -------------------------------------------------------------------------------- /dash-fastapi-backend/ruff.toml: -------------------------------------------------------------------------------- 1 | line-length = 120 2 | 3 | [format] 4 | quote-style = "single" -------------------------------------------------------------------------------- /dash-fastapi-backend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/server.py -------------------------------------------------------------------------------- /dash-fastapi-backend/sql/dash-fastapi-pg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/sql/dash-fastapi-pg.sql -------------------------------------------------------------------------------- /dash-fastapi-backend/sql/dash-fastapi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/sql/dash-fastapi.sql -------------------------------------------------------------------------------- /dash-fastapi-backend/sub_applications/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/sub_applications/handle.py -------------------------------------------------------------------------------- /dash-fastapi-backend/sub_applications/staticfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/sub_applications/staticfiles.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/common_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/common_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/cron_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/cron_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/log_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/log_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/message_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/message_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/page_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/page_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/pwd_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/pwd_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/response_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/response_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/string_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/string_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/time_format_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/time_format_util.py -------------------------------------------------------------------------------- /dash-fastapi-backend/utils/upload_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-backend/utils/upload_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/.env.dev -------------------------------------------------------------------------------- /dash-fastapi-frontend/.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/.env.prod -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/forget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/forget.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/login.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/monitor/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/monitor/cache.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/monitor/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/monitor/job.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/monitor/job_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/monitor/job_log.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/monitor/logininfor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/monitor/logininfor.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/monitor/online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/monitor/online.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/monitor/operlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/monitor/operlog.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/monitor/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/monitor/server.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/register.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/router.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/config.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/dept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/dept.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/dict/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/dict/data.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/dict/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/dict/type.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/menu.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/notice.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/post.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/role.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/api/system/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/api/system/user.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/app.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/css/global.css -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/favicon.ico -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/imgs/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/imgs/background.png -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/imgs/loading.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/imgs/loading.webp -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/imgs/logo.png -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/imgs/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/imgs/profile.jpg -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/js/cache_control_echarts_callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/js/cache_control_echarts_callbacks.js -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/js/echarts.min.js -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/js/js.cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/js/js.cookie.min.js -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/js/jsencrypt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/js/jsencrypt.min.js -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/js/jsencrypt_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/js/jsencrypt_func.js -------------------------------------------------------------------------------- /dash-fastapi-frontend/assets/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/assets/js/utils.js -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/app_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/app_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/forget_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/forget_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/innnerlink_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/innnerlink_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/layout_c/aside_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/layout_c/aside_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/layout_c/fold_side_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/layout_c/fold_side_menu.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/layout_c/head_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/layout_c/head_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/layout_c/index_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/layout_c/index_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/login_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/login_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/monitor_c/cache_c/control_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/monitor_c/cache_c/control_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/monitor_c/cache_c/list_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/monitor_c/cache_c/list_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/monitor_c/job_c/job_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/monitor_c/job_c/job_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/monitor_c/job_c/job_log_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/monitor_c/job_c/job_log_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/monitor_c/logininfor_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/monitor_c/logininfor_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/monitor_c/online_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/monitor_c/online_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/monitor_c/operlog_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/monitor_c/operlog_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/register_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/register_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/router_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/router_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/config_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/config_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/dept_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/dept_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/dict_c/dict_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/dict_c/dict_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/dict_c/dict_data_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/dict_c/dict_data_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/menu_c/components_c/button_type_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/menu_c/components_c/button_type_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/menu_c/components_c/content_type_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/menu_c/components_c/content_type_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/menu_c/components_c/menu_type_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/menu_c/components_c/menu_type_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/menu_c/menu_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/menu_c/menu_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/notice_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/notice_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/post_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/post_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/role_c/allocate_user_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/role_c/allocate_user_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/role_c/data_scope_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/role_c/data_scope_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/role_c/role_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/role_c/role_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/user_c/allocate_role_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/user_c/allocate_role_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/user_c/profile_c/avatar_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/user_c/profile_c/avatar_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/user_c/profile_c/reset_pwd_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/user_c/profile_c/reset_pwd_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/user_c/profile_c/user_info_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/user_c/profile_c/user_info_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/callbacks/system_c/user_c/user_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/callbacks/system_c/user_c/user_c.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/components/ApiRadioGroup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/components/ApiRadioGroup/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/components/ApiSelect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/components/ApiSelect/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/components/ManuallyUpload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/components/ManuallyUpload/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/components/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/config/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/config/constant.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/config/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/config/enums.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/config/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/config/env.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/config/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/config/exception.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/config/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/config/router.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/ruff.toml: -------------------------------------------------------------------------------- 1 | line-length = 80 2 | 3 | [format] 4 | quote-style = "single" -------------------------------------------------------------------------------- /dash-fastapi-frontend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/server.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/store/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/store/store.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/cache_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/cache_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/common_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/common_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/dict_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/dict_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/feedback_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/feedback_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/log_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/log_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/permission_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/permission_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/request.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/router_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/router_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/string_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/string_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/time_format_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/time_format_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/utils/tree_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/utils/tree_util.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/dashboard/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/dashboard/components/page_bottom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/dashboard/components/page_bottom.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/dashboard/components/page_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/dashboard/components/page_top.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/forget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/forget.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/innerlink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/innerlink/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/layout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/layout/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/layout/components/aside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/layout/components/aside.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/layout/components/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/layout/components/content.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/layout/components/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/layout/components/head.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/login.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/cache/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/cache/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/cache/control/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/cache/list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/cache/list/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/druid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/druid/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/job/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/job/job_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/job/job_log.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/logininfor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/logininfor/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/online/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/online/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/operlog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/operlog/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/monitor/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/monitor/server/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/page_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/page_404.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/register.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/config/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/dept/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/dept/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/dict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/dict/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/dict/dict_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/dict/dict_data.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/menu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/menu/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/menu/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/menu/components/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/menu/components/button_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/menu/components/button_type.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/menu/components/content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/menu/components/content_type.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/menu/components/icon_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/menu/components/icon_category.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/menu/components/menu_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/menu/components/menu_type.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/notice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/notice/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/post/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/post/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/role/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/role/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/role/allocate_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/role/allocate_user.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/role/component/query_form_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/role/component/query_form_table.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/role/data_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/role/data_scope.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/user/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/user/allocate_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/user/allocate_role.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/user/profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/user/profile/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/user/profile/reset_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/user/profile/reset_pwd.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/user/profile/user_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/user/profile/user_avatar.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/system/user/profile/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/system/user/profile/user_info.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/tool/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/tool/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/tool/build/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/tool/gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/tool/gen/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/views/tool/swagger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/views/tool/swagger/__init__.py -------------------------------------------------------------------------------- /dash-fastapi-frontend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/dash-fastapi-frontend/wsgi.py -------------------------------------------------------------------------------- /demo-pictures/dashzsxq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/dashzsxq.jpg -------------------------------------------------------------------------------- /demo-pictures/wxcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/wxcode.jpg -------------------------------------------------------------------------------- /demo-pictures/zanzhu_wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/zanzhu_wx.jpg -------------------------------------------------------------------------------- /demo-pictures/zanzhu_zfb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/zanzhu_zfb.jpg -------------------------------------------------------------------------------- /demo-pictures/zsxq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/zsxq.jpg -------------------------------------------------------------------------------- /demo-pictures/个人资料.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/个人资料.png -------------------------------------------------------------------------------- /demo-pictures/参数设置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/参数设置.png -------------------------------------------------------------------------------- /demo-pictures/在线用户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/在线用户.png -------------------------------------------------------------------------------- /demo-pictures/字典管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/字典管理.png -------------------------------------------------------------------------------- /demo-pictures/定时任务.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/定时任务.png -------------------------------------------------------------------------------- /demo-pictures/岗位管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/岗位管理.png -------------------------------------------------------------------------------- /demo-pictures/忘记密码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/忘记密码.png -------------------------------------------------------------------------------- /demo-pictures/操作日志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/操作日志.png -------------------------------------------------------------------------------- /demo-pictures/服务监控.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/服务监控.png -------------------------------------------------------------------------------- /demo-pictures/用户管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/用户管理.png -------------------------------------------------------------------------------- /demo-pictures/登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/登录.png -------------------------------------------------------------------------------- /demo-pictures/登录日志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/登录日志.png -------------------------------------------------------------------------------- /demo-pictures/系统接口.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/系统接口.png -------------------------------------------------------------------------------- /demo-pictures/缓存列表.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/缓存列表.png -------------------------------------------------------------------------------- /demo-pictures/缓存监控.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/缓存监控.png -------------------------------------------------------------------------------- /demo-pictures/菜单管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/菜单管理.png -------------------------------------------------------------------------------- /demo-pictures/角色管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/角色管理.png -------------------------------------------------------------------------------- /demo-pictures/通知公告.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/通知公告.png -------------------------------------------------------------------------------- /demo-pictures/部门管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/部门管理.png -------------------------------------------------------------------------------- /demo-pictures/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/demo-pictures/首页.png -------------------------------------------------------------------------------- /requirements-pg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/requirements-pg.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/Dash-FastAPI-Admin/HEAD/requirements.txt --------------------------------------------------------------------------------