antdesign mobile 实现点击弹form弹窗

目标效果:

antdesign mobile 实现点击弹form弹窗_第1张图片

antdesign mobile 实现点击弹form弹窗_第2张图片

代码实现部分:

{ Modal.show({ content: (
), closeOnAction: true, showCloseButton:true, actions: [ { key: 'confirm', text: '确定', primary:true, onClick:async ()=>{ const params = form?.getFieldsValue() console.log("paramsaaaaa",params); }} ] }) }} >

你可能感兴趣的:(前端)