|
@ -14,6 +14,7 @@ import { cloneDeep, merge } from 'lodash-es' |
|
|
|
|
|
|
|
|
export type CrudSchema = Omit<TableColumn, 'children'> & { |
|
|
export type CrudSchema = Omit<TableColumn, 'children'> & { |
|
|
isSearch?: boolean // 是否在查询显示
|
|
|
isSearch?: boolean // 是否在查询显示
|
|
|
|
|
|
hiddenSearchHigh?: boolean // 是否隐藏高级筛选
|
|
|
search?: CrudSearchParams // 查询的详细配置
|
|
|
search?: CrudSearchParams // 查询的详细配置
|
|
|
isTable?: boolean // 是否在列表显示
|
|
|
isTable?: boolean // 是否在列表显示
|
|
|
table?: CrudTableParams // 列表的详细配置
|
|
|
table?: CrudTableParams // 列表的详细配置
|
|
|