closePage.ts 151 B

123456789
  1. // 关闭 像父级派发 页面
  2. export const iframeExitMes = () => {
  3. window.parent.postMessage(
  4. {
  5. api: "iframe_exit"
  6. },
  7. "*"
  8. )
  9. }