wupengfei
昨天 c8c2f28f9008989f8035da5e78c262b326707065
1
2
3
4
5
6
7
8
9
10
import { LifeRechargeConstants } from '@life-payment/core-vue';
 
export function initLifePayType(isInWeChat: boolean, isInAlipay: boolean) {
  if (isInWeChat) {
    return LifeRechargeConstants.LifePayTypeEnum.WxPay;
  } else if (isInAlipay) {
    return LifeRechargeConstants.LifePayTypeEnum.AliPay;
  }
  return LifeRechargeConstants.LifePayTypeEnum.AliPay;
}