Skip to content
新窗口打开页面
js
      // 在新窗口打开
      // window.location.origin 当前的域名或者ip
      // 后面数据直接在后面拼接即可
      window.open(
        window.location.origin + "/#/customer/detail/" + id,
        "_blank"
      );