zhengyiming
2025-06-09 f5105689af0ccee7d34632e8f8b47a66abda0884
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;
}