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

123456789101112131415161718192021222324252627
  1. // 区分支付宝还是微信
  2. // #ifdef MP-ALIPAY
  3. export const source = "ALI"
  4. // #endif
  5. // #ifdef MP-WEIXIN
  6. export const source = "WECHAT" //WECHAT
  7. // #endif
  8. // 微信小程序渠道编号:52010106004 支付宝小程序52010106998
  9. // 渠道编号
  10. // #ifdef MP-ALIPAY
  11. export const agentId = "52010106004"
  12. // #endif
  13. // #ifdef MP-WEIXIN
  14. export const agentId = "52010106004" //
  15. // #endif
  16. // 网点编号
  17. // #ifdef MP-ALIPAY
  18. export const channelId = "5201010600401140003"
  19. // #endif
  20. // #ifdef MP-WEIXIN
  21. export const channelId = "5201010200601130001" //
  22. // #endif
  23. // 9901渠道
  24. export const deviceType = "TYMY9901"