鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 import { FormSchema } from '@/types/form'
H 2
3 export interface PlaceholderModel {
4   placeholder?: string
5   startPlaceholder?: string
6   endPlaceholder?: string
7   rangeSeparator?: string
8 }
9
10 export type FormProps = {
11   schema?: FormSchema[]
12   isCol?: boolean
13   model?: Recordable
14   autoSetPlaceholder?: boolean
15   isCustom?: boolean
16   labelWidth?: string | number
17 } & Recordable