欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue调微信支付

程序员文章站 2024-03-22 23:05:28
...

我这个是后台会返给我微信支付的配置信息
vue调微信支付

    gosuccessful() {
      this.$post("", {
        token: localStorage.getItem("token"),
        user_name: this.user_name,
        phone: this.phone,
        id: this.info.id
      }).then(res => {
        console.log(res);
        if (res.code == 200) {
          this.weixininfo = res.data; //拿到配置信息
          WeixinJSBridge.invoke(
            "getBrandWCPayRequest",
            this.weixininfo,
            res => {
              if (res.err_msg == "get_brand_wcpay_request:ok") {
                Toast("支付成功");
              } else {
                Toast("支付失败");
              }
            }
          );
        }
      });
    },
相关标签: 支付