Loading... **ProForm—高级表单常用参数说明(目前我也在学习,有错误的欢迎在下方给我留言,我会及时修改。)** > initialValues:设置默认值,是一个对象 > > modalProps={{ destroyOnClose: true }} > > preserve={false} //清空输入的内容(推荐) > > layout="horizontal" // 配置这个才能在同一行显示 > > labelCol:组件左边的宽度 > > wrapperCol:组件右边的宽度 > > submitter={{ > > // 配置按钮的属性 > > resetButtonProps: { > style: { > // 隐藏重置按钮 > display: 'none' > } > }, > > submitButtonProps: { > style: { > // 隐藏重置按钮 > display: 'none' > } > } > > searchConfig: { > > resetText: "取消",//修改ProForm提交文字 > > submitText: "保存"//修改ProForm取消文字 > > } > > }} > > onFinish:点击提交的回调函数 > > onReset:点击重置的回调函数 > > import 'moment/locale/zh-cn'; > import locale from 'antd/es/date-picker/locale/zh_CN'; > > locale={locale} // 配置中文 > > fieldProps={ //配置form中原本的各个fields所使用的参数 > > format:'YY-MM-DD', //配置日期 > > min: 0, //最小的数 > > max: 10, //最大的数 > > precision: 0, //限制输入的小数位数 > > disabled: true,//禁用 > > disabledDate:true,//禁用时间选择 > > } > > <ProFormDatePicker width="90%" name="endTime" label="结束时间" format="YYYY-MM-DD HH:mm:ss" showTime={{ format: 'HH:mm:ss' }} rules={[{ required: true }]} /> //单个时间组件带时分秒的 Last modification:September 5, 2023 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 5 如果觉得我的文章对你有用,请随意赞赏
One comment
教程真的很仔细,谢谢分享