其他分享
首页 > 其他分享> > uniapp 付款

uniapp 付款

作者:互联网

// 支付
			toPay() {
				this.$request.post(this.$api.system.order_pay, {
					order_sn: this.order_sn, // 订单号
					pay_type: this.pay_type ,// 支付类型,后端定义
				}).then(res => {
					this.$msg(res.msg, 0)
					if (this.pay_type == 3 && res.code==200) {
						setTimeout(() => {
							this.$navigateTo('../mine/myOrder/order')
						}, 1000)
						return
					}
					let _this = this
					console.log(res.code )
					if (res.code == 233) {
						let orderInfo = res.result
						console.log(orderInfo)// 订单参数,后端返回
						// 传参的时候如果不知道哪里报错,建议拨打客服电话,客服那边可以看到错误信息
						uni.requestPayment({
							provider: this.provider, // alipay支付宝  wxpay微信
							orderInfo: orderInfo, // 传给支付宝和微信的订单参数
							success: function(res) {
								if (res.channel.serviceReady) {
									_this.$msg('支付成功', 1)
									setTimeout(() => {
										_this.$navigateTo('../mine/myOrder/order')
									}, 1000)
								}
		
							fail: function(err) {
								// _this.$msg('支付失败', 0)
								console.log('fail:' + JSON.stringify(err));
							}
						});

					}
				}).catch(err => {
					this.$msg('请稍后重试', 0)
				})
			}

标签:uniapp,code,orderInfo,res,付款,pay,msg,order
来源: https://blog.csdn.net/weixin_48789376/article/details/117823082