• uni-app 微信小程序支付/公众号支付/h5支付宝/h5微信/支付宝app支付/微信app支付


    思路:
    先判断是app/h5/微信小程序
    如果是h5,判断是微信内打开还是微信外

    app.vue

    	onLaunch: function() {
    			uni.setStorageSync('h5Type', 0)		
    			// 微信小程序 需要openid
    			// #ifdef  MP-WEIXIN
    				this.getOpenidFunc()
    			// #endif	
    			
    			//这边记录了设备类型
    			let port = uni.getSystemInfoSync().uniPlatform
    			switch (port) {
    				case 'app':
    					uni.setStorageSync('device_type', 4);
    					break;
    				case 'web':
    					uni.setStorageSync('device_type', 2);
    					break;
    				case 'mp-weixin':
    					uni.setStorageSync('device_type', 5);
    					break;
    				default:
    					uni.setStorageSync('device_type', 4);
    					break;
    			}
    			
    			// 获取支付pro
    			uni.getProvider({
    				service: 'payment',
    				success: function (res) {
    					uni.setStorageSync('provider', res.provider[0])		
    				}
    			});
    			
    			// #ifdef  H5
    				// h5 判断微信内还是微信外
    				  var ua = window.navigator.userAgent.toLowerCase();
    				  if (ua.match(/MicroMessenger/i) == 'micromessenger'){
    					  // 微信内
    						  uni.setStorageSync('h5Type', 1)		
    						  let code = this.getUrlName('code')
    						  //如果有code,直接换openid
    						  if (code){
    							  getOpenIDByCode({code: code,type:3}).then(res => {
    							  		if (res.status == 1) {
    							  			uni.setStorageSync('openid', res.res.openid)		
    							  			uni.setStorageSync('session_key', res.res.session_key)		
    							  		}
    							  	}).catch(err => {
    							  		uni.showToast({
    							  			title: err.msg,
    							  			icon: 'none'
    							  		})
    							  	});
    						  }else{
    						    // 如果没有openid,需要重定向拿code换openid
    							  if (!uni.getStorageSync('openid')){
    								this.getwechatQrcode()
    							  }
    						  }
    				
    				  } else {
    					// 微信外
    					uni.setStorageSync('h5Type', 0)		
    				  }
    			// #endif
    			
    		},
    			onShow: function() {
    			var that = this
    			// #ifdef  MP-WEIXIN
    				 uni.checkSession({
    				      success(e) {
    					      },
    				      fail(){
    				        that.getOpenidFunc()
    				      }
    				    })
    			// #endif	
    		},
    		methods: {
    			//code换openid 小程序
    			getOpenidFunc(){
    				uni.login({
    				  success: res => {
    					getOpenIDByCode({code: res.code,type:2}).then(res => {
    							if (res.status == 1) {
    								uni.setStorageSync('openid', res.res.openid)		
    								uni.setStorageSync('session_key', res.res.session_key)		
    							}
    						}).catch(err => {
    							uni.showToast({
    								title: err.msg,
    								icon: 'none'
    							})
    						});
    				  }
    				})
    			},
    			//重定向拿code
    			getwechatQrcode (){
    			       var appid = 'xxx'
    			       var redirect_uri = encodeURIComponent(window.location.href)
    			       var scope = "snsapi_base"
    			       var wxUrl = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid='+appid+'&redirect_uri='+redirect_uri+'&response_type=code&scope='+scope+'&state=STATUS#wechat_redirect'
    			       window.location.replace(wxUrl)
    			    },
    			   getUrlName (name) {
    			     /* eslint-disable */
    			     return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ''])[1].replace(/\+/g, '%20')) || null
    			   },
    		}
    `
    ``
    
    支付页面:
    //支付宝支付,在小程序和公众号下,不显示
    
    				
    					
    					支付宝支付
    				
    				
    			
    			
    				
    					
    					微信支付
    				
    				
    			
    
    			return {
    				device_type: uni.getStorageSync('device_type'),
    				h5Type: uni.getStorageSync('h5Type')
    			}
    		toPayResult (type){
    				//webType 0 app 1 小程序 2 h5
    				// #ifdef  APP-PLUS
    					var webType = 0
    				// #endif
    				
    				// #ifdef  MP-WEIXIN
    					var webType = 1
    				// #endif
    				
    				// #ifdef  H5
    					var webType = 2
    				// #endif
    				
    				
    				// chooseType 0 支付宝 1 微信
    			   var chooseType = type
    			   
    			   //1.支付宝-APP;3.支付宝-H5;4.微信-APP;6.微信-H5;7.微信-微信浏览器;8.微信小程序 10.applepay;100.测试支付;
    			   if (webType==0){
    				   if (chooseType==0){
    					   var detail_pay_type = 1
    				   }else{
    					    var detail_pay_type = 4
    				   }
    			   }else if(webType==1){
    				     var detail_pay_type = 8
    			   }else{
    				   if(chooseType==1){
    						var h5Type = this.h5Type
    						if (h5Type==1){
    							var detail_pay_type = 7
    						}else{
    							var detail_pay_type = 6
    						}
    				   }else{
    					   var detail_pay_type = 3
    				   }
    			   }
    				var order_no = this.listDel.order_no
    				var openid = uni.getStorageSync('openid')
    				
    				var data = {
    					order_no: order_no,
    					openid: openid,
    					detail_pay_type: detail_pay_type
    				}
    				this.payFunc(data,detail_pay_type)
    			},
    			payFunc(data,detail_pay_type){
    					var that = this
    					uni.showLoading({
    						title: ''
    					})
    					var provider = uni.getStorageSync('provider')	
    					orderPay(data).then(res => {
    							uni.hideLoading();
    							if (res.status == 1) {
    								if (detail_pay_type==8){
    									//小程序
    									uni.requestPayment({
    									    provider: provider, 
    										timeStamp: res.res.timeStamp, // 时间戳(单位:秒)
    									   	nonceStr: res.res.nonceStr, // 随机字符串
    									   	package: res.res.package, // 固定值
    									   	signType: res.res.signType, //固定值
    									   	paySign: res.res.paySign, //签名
    									    success(res) {
    											uni.showToast({
    												title:'支付成功',
    												icon:'none'
    											})
    											uni.navigateTo({
    												url: '/market/pages/payResult'
    											});
    										},
    									    fail(e) {
    											uni.showToast({
    												title:'支付失败',
    												icon:'none'
    											})
    										}
    									})
    								}else if(detail_pay_type==7){
    									// 公众号微信
    									this.weixinPay(res.res)		
    								}else if(detail_pay_type==6){
    									// 公众号h5
    									 var url = res.res
    									 window.location.href = url
    								}else if (detail_pay_type==3){
    									//支付宝h5
    									  const divForm = document.getElementById('divForm')
    									   if(divForm){
    											document.body.removeChild(divForm)
    									   }
    									  const div = document.createElement('div')
    									  div.id = 'divForm' // 设置id
    									  div.innerHTML = res.res
    									  document.body.appendChild(div)
    									  // 利用id去获取表单
    									  document.getElementById('divForm').children[0].setAttribute('target','_self')
    									  this.$nextTick(function(){
    												  document.getElementById('divForm').children[0].submit()
    									   })
    								}else if(detail_pay_type==1){
    									//支付宝app
    									uni.requestPayment({
    									    provider: 'alipay',
    									    orderInfo: res.res, //支付宝订单数据
    									    success: function (res) {
    									        console.log('success:' + JSON.stringify(res));
    									    },
    									    fail: function (err) {
    									        console.log('fail:' + JSON.stringify(err));
    									    }
    									});
    								}else if(detail_pay_type==4){
    									//微信app
    									//订单对象,从服务器获取
    									var orderInfo = {
    									  "appid": res.res.appId,  // 应用ID(AppID)
    									  "partnerid": res.res.partnerId, // 商户号(PartnerID)
    									  "prepayid": res.res.prepayId,  // 预支付交易会话ID
    									  "package": res.res.packageValue,        // 固定值
    									  "noncestr": res.res.nonceStr, // 随机字符串
    									  "timestamp": res.res.timeStamp, // 时间戳(单位:秒)
    									  "sign": res.res.sign, // 签名,这里用的 MD5 签名
    									};
    									
    									uni.requestPayment({
    									    provider: "wxpay",
    									    orderInfo: orderInfos,
    									    success(res) {
    									            console.log('success:' + JSON.stringify(res));
    									            console.log("支付成功");
    									    },
    									    fail(err) {
    									            console.log('fail:' + JSON.stringify(err));
    									            console.log("支付失败");    
    										}
    									});
    								}
    							}
    						}).catch(err => {
    							uni.showToast({
    								title: err.msg,
    								icon: 'none'
    							})
    					});
    			},
    		weixinPay(data){
    				  var vm= this;
    				  if (typeof WeixinJSBridge == "undefined"){
    					if( document.addEventListener ){
    					  document.addEventListener('WeixinJSBridgeReady', vm.onBridgeReady(data), false);
    					}else if (document.attachEvent){
    					  document.attachEvent('WeixinJSBridgeReady', vm.onBridgeReady(data));
    					  document.attachEvent('onWeixinJSBridgeReady',vm.onBridgeReady(data));
    					}
    				  }else{
    					vm.onBridgeReady(data);
    				  }
    			},
    			 // 微信内调取h5支付
    			onBridgeReady (res) {
    			      WeixinJSBridge.invoke(
    			        'getBrandWCPayRequest', {
    			          "appId": res.appId,     //公众号名称,由商户传入
    			          "timeStamp": res.timeStamp.toString(),         //时间戳,自1970年以来的秒数
    			          "nonceStr": res.nonceStr, //随机串
    			          "package":res. package,
    			          "signType": res.signType,         //微信签名方式:
    			          "paySign": res.paySign //微信签名
    			        },
    			        function (res) {
    			          if (res.err_msg == "get_brand_wcpay_request:ok") {
    			        
    			          }
    			        })
    			   },
    
    • 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
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
  • 相关阅读:
    企业内容管理(ECM) 集成如何为您的 IT 环境增加价值
    LabVIEW性能和内存管理 3
    strcmp和stricmp,C 标准库 string.h
    Nacos使用教程(五)——配置管理中心
    以太坊合并在即 生态用户需要注意什么?
    通过sls采集k8s集群上的服务日志
    扩展学习|大数据分析的现状和分类
    五、Django ORM高级用法
    录屏工具下载哪个好?分享:超简单的录屏工具及实用方法
    FANUC机器人RSR自动运行模式的相关配置和参数设置(图文)
  • 原文地址:https://blog.csdn.net/qq_35736512/article/details/128117748