1、先开通商户号
2、根据步骤设置微信的一些相关东西
https://pay.weixin.qq.com/wiki/doc/apiv3/open/pay/chapter2_1.shtml#part-4
3、Vue+SpringBoot小程序版微信支付功能实现详细流程
巴拉巴拉一大堆
4、前端需要干的活来了
// 调用后台接口预支付下单
undifiedorder({openId: uni.getStorageSync("openid"),}).then(res => {
if(res.code === 200) {
// console.log(res,'微信支付下单接口')
wx.requestPayment({
'timeStamp': res.data.timeStamp,
'nonceStr': res.data.nonceStr,
'package': res.data.package,
'signType': res.data.signType,
'paySign': res.data.sign,
success: function (res) {
console.log("支付成功!",res)
},
fail: function (res) {
console.log(res,'失败')
}
})
}
})