89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
|
import { router } from '../router'
|
|||
|
import wechath5 from './wechath5'
|
|||
|
import { handleClientEvent } from './tools'
|
|||
|
|
|||
|
|
|||
|
// 微信支付
|
|||
|
export const wxpay = async options => {
|
|||
|
await handleClientEvent({
|
|||
|
// 微信小程序
|
|||
|
MP_WEIXIN: () => {
|
|||
|
return new Promise((resolve, reject) => {
|
|||
|
uni.requestPayment({
|
|||
|
provider: 'wxpay',
|
|||
|
timeStamp: options.timeStamp,
|
|||
|
// 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
|
|||
|
nonceStr: options.nonceStr,
|
|||
|
// 支付签名随机串,不长于 32 位
|
|||
|
package: options.package,
|
|||
|
// 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***)
|
|||
|
signType: options.signType,
|
|||
|
// 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
|
|||
|
paySign: options.paySign,
|
|||
|
|
|||
|
success: res => resolve(res),
|
|||
|
cancel: res => reject(res),
|
|||
|
fail: res => reject(res),
|
|||
|
})
|
|||
|
})
|
|||
|
},
|
|||
|
|
|||
|
// 微信公众号
|
|||
|
OA_WEIXIN: () => {
|
|||
|
return wechath5.wxPay(options)
|
|||
|
},
|
|||
|
|
|||
|
// H5
|
|||
|
H5: () => {
|
|||
|
return new Promise((resolve, reject) => {
|
|||
|
window.open(options, '_self')
|
|||
|
resolve()
|
|||
|
})
|
|||
|
},
|
|||
|
|
|||
|
// APP
|
|||
|
APP: () => {
|
|||
|
return new Promise((resolve, reject) => {
|
|||
|
uni.requestPayment({
|
|||
|
provider: 'wxpay',
|
|||
|
orderInfo: options,
|
|||
|
|
|||
|
success: res => resolve(res),
|
|||
|
cancel: res => reject(res),
|
|||
|
fail: res => reject(res),
|
|||
|
})
|
|||
|
})
|
|||
|
},
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
// 支付宝支付
|
|||
|
export const alipay = async options => {
|
|||
|
await handleClientEvent({
|
|||
|
// H5
|
|||
|
H5: () => {
|
|||
|
return new Promise((resolve, reject) => {
|
|||
|
const alipayPage = window.open('', '_self')
|
|||
|
alipayPage.document.body.innerHTML = options
|
|||
|
alipayPage.document.forms[0].submit()
|
|||
|
resolve()
|
|||
|
})
|
|||
|
},
|
|||
|
|
|||
|
// APP
|
|||
|
APP: () => {
|
|||
|
return new Promise((resolve, reject) => {
|
|||
|
uni.requestPayment({
|
|||
|
provider: 'alipay',
|
|||
|
orderInfo: options,
|
|||
|
|
|||
|
success: res => resolve('success'),
|
|||
|
cancel: res => reject('fail'),
|
|||
|
fail: res => reject('fail'),
|
|||
|
})
|
|||
|
})
|
|||
|
},
|
|||
|
})
|
|||
|
|
|||
|
}
|