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 639B

1234567891011121314151617181920212223242526
  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. // export const agentId = "52010106004"
  13. // #endif
  14. // #ifdef MP-WEIXIN
  15. export const agentId = "52010106004"
  16. // #endif
  17. // 网点编号
  18. // #ifdef MP-ALIPAY
  19. // export const channelId = "5201010699800000001"
  20. export const channelId = "5201010600401140003"
  21. // #endif
  22. // #ifdef MP-WEIXIN
  23. export const channelId = "5201010200601130001"
  24. // #endif