摘要:
知乎这个好像可以 antd Modal中使用Form组件, Modal确认按钮提交表单 https://zhuanlan.zhihu.com/p/651924574?utm_id=0 阅读全文
摘要:
不拆分的情况下 把columns配置,写在函数组件内部。 把相关的操作,也全部写在函数组件内部。 拆分的话 1.columns的render函数中,有个actionref,可以传递dom实例上的操作方法。 2.其他方法,可以使用hooks方法进行传递。 useColumns.tsx export c 阅读全文
摘要:
代码如下 export const waitTimePromise = async (time: number = 100) => { return new Promise(resolve => { setTimeout(() => { resolve(true); }, time); }); }; 阅读全文