当前位置:   article > 正文

uniapp封装mixins实现H5和微信小程序的微信支付

uniapp封装mixins实现H5和微信小程序的微信支付

// #ifdef H5
import jweixin from '@/js_sdk/jweixin-module/index.js';
// #endif
const wxPay = {
	data() {
		return {
			order: {
				login_id: 0,
				feetype: 'fen',
				states: '0',
				userid: '0',
				yuyue_id: '0',
				charge_id: '0',
				remark: '',
				openid:''
			},
			timer: null,
			zhifu_flag: false
		}
	},
	methods: {
		wxPaySubmit(form) {
			return new Promise((resolve, reject) => {
				// #ifdef MP-WEIXIN
				let data = {};
				data.body = form.body + '(小程序)';
				data.total_fee = parseFloat(form.total_fee) * 100;
				data.openid = this.openid;
				data.notify_url = form.notify_url;
				this.$Ajax.serverPost('后端请求地址', data).then(res => {
					uni.showLoading({
						title: '加载中...',
						mask: true
					});
					this.zhifu_flag = false
					let wxdata = {
						adddate: res.data.wxdata.adddate,
						appid: res.data.wxdata.appid,
						body: res.data.wxdata.body,
						mch_id: res.data.wxdata.mch_id,
						nonce_str: res.data.wxdata.nonce_str,
						notify_url: res.data.wxdata.notify_url,
						out_trade_no: res.data.wxdata.out_trade_no,
						sign: res.data.wxdata.sign,
						spbill_create_ip: res.data.wxdata.spbill_create_ip,
						total_fee: res.data.wxdata.total_fee,
						trade_type: res.data.wxdata.trade_type
					}
						let _this = this;
						uni.requestPayment({
							provider: 'wxpay',
							timeStamp: res.data.timeStamp,
							nonceStr: res.data.nonceStr,
							package: res.data.package,
							signType: 'MD5',
							paySign: res.data.paySign,
							success: function(res2) {
								if (res2.errMsg == "requestPayment:ok") {
									clearInterval(_this.timer)
									uni.hideLoading();
							resolve();
							}
						},
						fail: function(err) {
							clearInterval(_this.timer)
							uni.hideLoading();
							reject();
							console.log('fail:' + JSON.stringify(err));
						}
					});
					_this.timer = setInterval(() => {
						// 订单查询
						_this.$Ajax.serverPost('地址', {
							out_trade_no: res.data.wxdata.out_trade_no
						}).then(res5 => {
							if (this.zhifu_flag) return
							if (res5.data.trade_state_desc == '支付成功') {
								this.zhifu_flag = true
								clearInterval(_this.timer)
								resolve();
								uni.hideLoading();
							} else {
								this.zhifu_flag = false
							}
						})
					}, 1000)
				});
				// #endif

				// #ifdef H5
				let data = {};
				data.body = form.body + '(H5)';
				data.total_fee = parseFloat(form.total_fee) * 100;
				data.openid = this.openid;
				data.notify_url = form.notify_url;
				this.$Ajax.serverPost('地址', data).then(res => {
					uni.showLoading({
						title: '加载中...',
						mask: true
					});
					this.zhifu_flag = false
					let wxdata = {
						adddate: res.data.wxdata.adddate,
						appid: res.data.wxdata.appid,
						body: res.data.wxdata.body,
						mch_id: res.data.wxdata.mch_id,
						nonce_str: res.data.wxdata.nonce_str,
						notify_url: res.data.wxdata.notify_url,
						out_trade_no: res.data.wxdata.out_trade_no,
						sign: res.data.wxdata.sign,
						spbill_create_ip: res.data.wxdata.spbill_create_ip,
						total_fee: res.data.wxdata.total_fee,
						trade_type: res.data.wxdata.trade_type
					}
					let _this = this;
					jweixin.config({
						debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
						appId: res.data.appId, // 必填,公众号的唯一标识
						timestamp: res.data.timeStamp, // 必填,生成签名的时间戳
						nonceStr: res.data.nonceStr, // 必填,生成签名的随机串
						signature: res.data.paySign, // 必填,签名
						jsApiList: ['chooseWXPay'],
					});
					jweixin.chooseWXPay({
						appId: res.data.appId,
						timestamp: res.data
							.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
						nonceStr: res.data.nonceStr, // 支付签名随机串,不长于 32
						package: res.data
							.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
						signType: "MD5", // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
						paySign: res.data.paySign, // 支付签名
						success: async function(res1) {
							clearInterval(_this.timer)
							uni.hideLoading();
							resolve();
						},
						cancel: function(res1) {
							clearInterval(_this
								.timer)
							uni.hideLoading();
						},
						fail: function(res1) {
							clearInterval(_this
								.timer)
							uni.hideLoading();
							reject();
						}
					});
					_this.timer = setInterval(() => {
						// 订单查询
						_this.$Ajax.serverPost('地址', {
							out_trade_no: res.data.wxdata.out_trade_no
						}).then(res5 => {
							if (this.zhifu_flag) return
							if (res5.data.trade_state_desc == '支付成功') {
								this.zhifu_flag = true
								clearInterval(_this.timer)
								uni.hideLoading();
								resolve();
							} else {
								this.zhifu_flag = false
							}
						})
					}, 1000)
				});
				// #endif
			})
		},
	}
}
export default wxPay;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173

使用

<script>
	import wxPay from '@/mixins/wxPay.js'
	export default {
		mixins: [wxPay],
		data() {
			return {
				form: {
					notify_url: '回调地址',
					body: '',
					total_fee:0
				}
			};
		},
		
		methods: {
			pay() {
				this.wxPaySubmit(this.form).then(res => {
					uni.showToast({
						title: "支付成功",
						icon: 'none'
					});
				});
			},
		},
	};
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/655516
推荐阅读
相关标签
  

闽ICP备14008679号