vue 复制链接功能


//复制链接
copyUrl(index) {
      if (this.couponList[index].status == 2) {
        this.$sweetalert.errorAlert("警告", "该优惠券暂不可用");
        return;
      }
      var id = this.couponList[index].couponId;
      var url =
        this.Global.url + "/BusinessCenter/CouponCollection?couponId=" + id;
      var oInput = document.createElement("input");
      oInput.value = url;
      document.body.appendChild(oInput);
      oInput.select(); // 选择对象
      document.execCommand("Copy"); // 执行浏览器复制命令
      oInput.className = "oInput";
      oInput.style.display = "none";
      this.$toastr.tipSuccess("复制成功","消息提示");
    }
  },

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM