mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-26 14:23:48 +00:00
refactor: 整理代码格式,统一代码风格
本次提交对多处代码进行格式优化: 1. 合并简化空接口定义,调整多行参数换行格式 2. 移除无用导入和冗余变量 3. 统一字符串引号风格,调整样式属性顺序 4. 修复缩进问题,让代码结构更清晰
This commit is contained in:
@@ -205,7 +205,11 @@ const createInitialFormData = (): DemoForm => ({
|
||||
json_val: undefined,
|
||||
});
|
||||
|
||||
type DemoSearchFormParams = { name?: string; status?: number; tenant_id?: number } & AuditSearchFormParams;
|
||||
type DemoSearchFormParams = {
|
||||
name?: string;
|
||||
status?: number;
|
||||
tenant_id?: number;
|
||||
} & AuditSearchFormParams;
|
||||
|
||||
const searchForm = ref<DemoSearchFormParams>({
|
||||
name: undefined,
|
||||
|
||||
Reference in New Issue
Block a user