选煤厂生产管理平台前端代码
houzhongjian
2024-11-22 82c159b99ca114bc8189e681bde3b4491a81af1c
提交 | 用户 | 时间
82c159 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