vue.js 微信支付前端代码分享

前端之家收集整理的这篇文章主要介绍了vue.js 微信支付前端代码分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

实例如下所示:

{ //1:支付类型,可不填 this.message = rt.t WeixinJSBridge.invoke( 'getBrandWCPayRequest',{ 'appId': this.message.appId,'timeStamp': this.message.timeStamp,'nonceStr': this.message.nonceStr,'package': this.message.package,'signType': this.message.signType,'paySign': this.message.paySign },function (res) { console.log(res) if (res.err_msg === 'get_brand_wcpay_request:ok') { Toast('微信支付成功') this.$router.push('/MineOrder') } else if (res.err_msg === 'get_brand_wcpay_request:cancel') { Toast('用户取消支付') // window.location.href = 'gift_failview.do?out_trade_no=' + this.orderId } else if (res.err_msg === 'get_brand_wcpay_request:fail') { Toast('网络异常,请重试') } } ) }) },callpay: function () { if (typeof WeixinJSBridge === 'undefined') { if (document.addEventListener) { document.addEventListener('WeixinJSBridgeReady',this.onBridgeReady(),false) } else if (document.attachEvent) { document.attachEvent('WeixinJSBridgeReady',this.onBridgeReady()) document.attachEvent('onWeixinJSBridgeReady',this.onBridgeReady()) } } else { this.onBridgeReady() } }

以上这篇vue.js 微信支付前端代码分享就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/33737.html

猜你在找的Vue相关文章