/** * Date 字段渲染策略 */ import React from 'react'; import { DatePicker } from 'antd'; import { BaseFieldStrategy } from './BaseFieldStrategy'; import type { FieldRenderContext } from '../IFieldRenderStrategy'; export class DateStrategy extends BaseFieldStrategy { supportsReadonly = false; render(context: FieldRenderContext): React.ReactNode { const { field, value, onChange } = context; const disabledProps = this.getDisabledProps(context); return ( ); } }