去掉重置和提交按钮

<ProForm
          submitter={{
            // 配置按钮文本
            searchConfig: {
              resetText: '重置',
              submitText: '提交',
            },
            // 配置按钮的属性
            resetButtonProps: {
              style: {
                // 隐藏重置按钮
                display: 'none',
              },
            },
            submitButtonProps: {},

            // 完全自定义整个区域
            render: (props, doms) => {
              console.log(props);
              return [

              ];
            },
          }}
          toolBarRender={false}
        >
        


        </ProForm>

去掉搜索框
表单中去掉重置和提交按钮和搜索框_重置