mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
1. 删除无用文件与废弃代码:移除locale枚举、element-plus插件、sse路由、api token模块等 2. 简化类型导入与依赖:移除大量未使用的类型导入,统一echarts导入方式 3. 优化配置与样式:调整gitignore、样式引入顺序,新增列表动画样式 4. 修复接口与模型:修正接口返回类型、查询参数配置,更新部门模型字段 5. 优化性能与体验:添加图片懒加载,优化加载逻辑与表格渲染 6. 调整环境配置:新增并更新开发/生产环境配置文件
37 lines
1.6 KiB
Python
37 lines
1.6 KiB
Python
from typing import Annotated
|
|
|
|
from fastapi import APIRouter, Body, Depends, Path, Security
|
|
from fastapi.responses import JSONResponse
|
|
from redis.asyncio.client import Redis
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.common.response import ResponseSchema, SuccessResponse
|
|
from app.core.base_schema import AuthSchema
|
|
from app.core.dependencies import AuthPermission, db_getter, redis_getter
|
|
from app.core.router_class import OperationLogRoute
|
|
|
|
from .schema import ParamsOutSchema, ParamsUpdateSchema
|
|
from .service import ParamsService
|
|
|
|
ParamsRouter = APIRouter(route_class=OperationLogRoute, prefix="/param", tags=["参数管理"])
|
|
|
|
|
|
@ParamsRouter.put("/update/{id}", summary="修改参数", response_model=ResponseSchema[ParamsOutSchema])
|
|
async def update_param_controller(
|
|
redis: Annotated[Redis, Depends(redis_getter)],
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:param:update"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
id: Annotated[int, Path(description="参数ID")],
|
|
data: Annotated[ParamsUpdateSchema, Body(description="参数修改参数")],
|
|
) -> JSONResponse:
|
|
result_dict = await ParamsService(auth, db).update(redis=redis, id=id, data=data)
|
|
return SuccessResponse(data=result_dict, msg="更新参数成功")
|
|
|
|
|
|
@ParamsRouter.get("/info", summary="获取初始化缓存参数", response_model=ResponseSchema[list[ParamsOutSchema]])
|
|
async def get_init_config_controller(
|
|
redis: Annotated[Redis, Depends(redis_getter)],
|
|
) -> JSONResponse:
|
|
result_dict = await ParamsService.get_init_cache(redis=redis)
|
|
return SuccessResponse(data=result_dict, msg="获取初始化缓存参数成功")
|