123456789101112131415161718192021222324252627 |
- // 区分支付宝还是微信
- // #ifdef MP-ALIPAY
- export const source = "ALI"
- // #endif
- // #ifdef MP-WEIXIN
- export const source = "WECHAT" //WECHAT
- // #endif
-
- // 微信小程序渠道编号:52010106004 支付宝小程序52010106998
- // 渠道编号
- // #ifdef MP-ALIPAY
- export const agentId = "52010106004"
- // #endif
- // #ifdef MP-WEIXIN
- export const agentId = "52010106004" //
- // #endif
-
- // 网点编号
- // #ifdef MP-ALIPAY
- export const channelId = "5201010600401140003"
- // #endif
- // #ifdef MP-WEIXIN
- export const channelId = "5201010200601130001" //
- // #endif
-
- // 9901渠道
- export const deviceType = "TYMY9901"
|