表单数据
| 30 | |
| 31 | /** 表单数据 */ |
| 32 | interface FormData extends InitData { |
| 33 | name: string; |
| 34 | title: string; |
| 35 | feats: Extract<DSFeatureType, 'View' | 'Edit' | 'Delete'>[]; |
| 36 | viewApi?: string | BaseApiObject; |
| 37 | editApi?: string | BaseApiObject; |
| 38 | deleteApi?: string | BaseApiObject; |
| 39 | __fieldItem: Record<string, any>[]; |
| 40 | } |
| 41 | |
| 42 | const AddColumnModal: React.FC<AddColumnModalProps> = props => { |
| 43 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected