Commit d1795a92 by xuzhenzhao

feat(custom): payment

add appId params
parents 99791184 8ea52f9b
......@@ -98,6 +98,10 @@ export type ToPayParams = {
*/
openId?: string;
appId?: string;
/**
* 支付记录id, 采用余额支付的时候如果前端有此值就带过来
*/
payId?: number;
}
export enum PayError {
......
import {IS_PAY, MY_BALANCE, UNIT_PAY} from "./API";
import {UNIT_PAY, IS_PAY, MY_BALANCE} from "./API";
import md5 from 'blueimp-md5'
import qs from 'qs'
import {Utils} from "@/Utils/Utils";
......@@ -145,8 +145,8 @@ export class Payment {
return {payAmount, payBalance}
}
public async toPay(params: ToPayParams): Promise<ToPayReturns> {
const {totalAmount, payType, returnUrl, orderId, redirectUrl, openId, appId,} = params
async toPay(params: ToPayParams): Promise<ToPayReturns> {
const {totalAmount, payType, returnUrl, orderId, redirectUrl, openId, appId, payId,} = params
let quitUrl = params.quitUrl
// validate start >>>
switch (payType) {
......@@ -233,6 +233,7 @@ export class Payment {
payType,
openId,
appId,
payId,
...this.computeAmount(totalAmount, this.balance),
}
if (payChannel !== null) {
......@@ -240,8 +241,8 @@ export class Payment {
}
const res = await requestForJava.post<DoUnifiedParams, DefaultResponse>(UNIT_PAY, doUnifiedParams)
if (res.code !== '200') return {errorMessage: res.msg as any, success: false, errorType: PayError.BACKEND}
if (params.payType === PayType.BALANCE && res.data.balancePayResult) {
return {success: res.data.balancePayResult === 'true', errorType: PayError.BALANCE}
if (params.payType === PayType.BALANCE && res.data) {
return {success: res.data.result, errorType: PayError.BALANCE}
} else if (payChannel === PayChannel.WX_JSAPI) {
const isPaySucc = await this.wechatPayJSSDK(res.data)
return {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment