You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

difference.js 378B

12345678910111213141516
  1. // 区分支付宝还是微信
  2. // #ifdef MP-ALIPAY
  3. export const source = "ALI"
  4. // #endif
  5. // #ifdef MP-WEIXIN
  6. export const source = "WECHAT"
  7. // #endif
  8. // 微信小程序渠道编号:52010106004 支付宝小程序52010106998
  9. // 渠道编号
  10. // #ifdef MP-ALIPAY
  11. export const agentId = "52010106998"
  12. // #endif
  13. // #ifdef MP-WEIXIN
  14. export const agentId = "52010106004"
  15. // #endif