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

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