1.支付按钮,定义支付事件
< u-button text = " 立即抢购" @click = " payTap" shape = " circle" color = " #E10000" > </ u-button>
2.支付事件
let data = { openId : this . openId, courseId : this . detailsObj. id, promoterId : this . promoterShareId ? this . promoterShareId : '' , receiveCouponId : this . detailsObj. receiveCouponId ? this . detailsObj. receiveCouponId : '' } wxCreateOrder ( data) . then ( res => { payment ( { orderNumber : res. data. orderId, openId : this . openId, } ) . then ( res1 => { let twoData = res1. data. dataconsole. log ( twoData, '返回密钥' ) uni. requestPayment ( { appId : twoData. appId, timeStamp : twoData. timeStamp ? ( twoData. timeStamp) . toString ( ) : '' , nonceStr : twoData. nonceStr, package : twoData. packageStr, signType : twoData. signType, paySign : twoData. paySign, success ( result ) { console. log ( result, '调起支付' ) if ( result. errMsg == "requestPayment:ok" ) { uni. showLoading ( { title : '获取订单状态..' , mask : true , } ) setOrderIsHaveData ( _this. orderNum) . then ( data => { uni. hideLoading ( ) _this. requestDataAll ( ) } ) _this. paySuccess ( ) } else { uni. showModal ( { title : '' , content : '支付失败' , showCancel : false , icon : 'none' , success ( res ) { } } ) } } , fail ( result ) { console. log ( result) uni. showModal ( { title : '' , content : '支付失败' , showCancel : false , icon : 'none' , success ( res ) { } } ) } , } ) } ) } )