704998200

Results 3 issues of 704998200

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🧐 问题描述 为什么ProForm没有像ProTable那样的reload方法,我提交表单后想重新刷新表单数据,有没有什么方法能重新调用ProForm的request方法 ### 💻 示例代码 ``` const CompanyDetail = () => { const { id } = useParams(); const [form] = useForm(); return ( ); };...

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🧐 问题描述 submitterColSpanProps的span设置为number类型后,当页面宽度比较小的时候并在submit区域添加多一个按钮后,submit区域就有可能超出页面 ### 💻 示例代码 submit区域有可能超出页面 ``` search={{ layout: "horizontal", optionRender: (searchConfig, props, dom) => [ ...dom, , , ], labelWidth: "auto", collapseRender: false, collapsed: false,...

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🐛 bug 描述 ProTable组件的request方法如果没有await一个宏任务 无法触发syncToUrl回调函数 ### 📷 复现步骤 在request中使用这段代码才能触发syncToUrl ``` await new Promise((resolve) => { setTimeout(resolve, 0); }); ``` ### 🏞 期望结果 每次使用分页跳转 触发syncToUrl回调函数 ### 💻 复现代码...