mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-23 21:18:09 +00:00
1、系统配置修改上线 2、 pinia取代vuex
This commit is contained in:
@@ -9,11 +9,11 @@ class ConfigQueryParams:
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
name: Optional[str] = Query(None, description="配置名称", min_length=2, max_length=50),
|
||||
title: Optional[str] = Query(None, description="网站标题", min_length=2, max_length=50),
|
||||
) -> None:
|
||||
super().__init__()
|
||||
|
||||
# 模糊查询字段
|
||||
self.name = ("like", name)
|
||||
self.title = ("like", title)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user