refactor: 整理代码格式,统一代码风格

本次提交对多处代码进行格式优化:
1. 合并简化空接口定义,调整多行参数换行格式
2. 移除无用导入和冗余变量
3. 统一字符串引号风格,调整样式属性顺序
4. 修复缩进问题,让代码结构更清晰
This commit is contained in:
zhangtao
2026-06-22 00:37:30 +08:00
parent 8a9ef788bf
commit 134337b502
13 changed files with 49 additions and 34 deletions
@@ -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,