美文网首页
vue 打包App 监听物理按钮返回

vue 打包App 监听物理按钮返回

作者: CoolBoy_52e5 | 来源:发表于2021-03-11 17:34 被阅读0次
// 安卓后退键
this.$mui.plusReady(() => {
  var backcount = 0;
  this.$mui.back = () => {
    let path = this.$route.path;
    console.log("path:" + path);

    if (this.arrTab.includes(path)) {
      // 主导航页
      if (this.$mui.os.ios) return;
      if (backcount > 0) {
        if (window.plus) plus.runtime.quit();
        return;
      }
      this.$toast("再点击一次退出应用!");
      backcount++;
      setTimeout(() => {
        backcount = 0;
      }, 2000);
    } else {
      // 子页面
      console.log("子页面后退键");
      this.$router.go(-1);
    }
  };
});

相关文章

网友评论

      本文标题:vue 打包App 监听物理按钮返回

      本文链接:https://www.haomeiwen.com/subject/dsexqltx.html