{
  "content": "string | React.ReactNode", //弹窗内容
  "visible": "boolean", // 是否显示
  "defaultVisible": "boolean", // 默认显示
  "onVisibleChange": "Function(visible)", // 弹层显示状态改变时调用, 参数为visible
  "prefixCls": "string", // class前缀
  "extraCls": "string", // 自定义class
  "trigger": "string | Array", //触发展示的行为: hover click 默认值 ['hover']
  "children": "any",
  "footer": {
    "text": "string",
	"width": "string",
	"maxWidth": "string",
	"margin": "string",
	"type": "any",
	"showTip": "boolean",
	"disable": "boolean",
	"loading": "boolean",
	"onClick": "(e) => void"
  }, // 自定义按钮
  "size": "string", // 尺寸大小: small（170px） large（340px） auto（与父级自适应）
  "placement": "string", // 弹层的显示位置 可选 'topLeft', 'topRight', 'bottomRight', 'bottomLeft' 默认值 bottomLeft
  "width": "number", // 自定义大小，优先级低于size
  "autoSize": "boolean", // 是否监听弹层的大小变化 默认值 true
  "stretch": "string", // 弹层拉伸 可选 'width'、 'minWidth'、 'height'、 'minHeight'
  "childMargin": "string", // 子组件的外边距 默认值 0px
  "zIndex": "number", // 组件层级
  "onOk": "Function", // 默认确定按钮的回调函数
  "getPopupContainer": "Function", // 
  "okText": "string", // 确认按钮文本内容默认值（确认）
  "builtinPlacements": "any", // 弹层的可定义偏移位置（具体可参考dom-align）
  "blockContainer": "boolean", // 外层容器的显示类型（true是block类型，false则是inline-block）默认值 false
  "autoAdjust": "boolean" // 是否自适应调整位置
}