1. interface P {
    2. account: string;
    3. pwd: string;
    4. }
    5. const columns: ProColumns<P>[] = [{
    6. title: '',
    7. render: (),
    8. dataIndex
    9. }]
    10. function Demo () {
    11. <ProForm<P>
    12. onFinish={ async (feilds) => {
    13. feilds.accoun
    14. }}
    15. >
    16. </ProForm>
    17. }