Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314151617181920212223242526 |
- // 区分支付宝还是微信
- // #ifdef MP-ALIPAY
- export const source = "ALI"
- // #endif
- // #ifdef MP-WEIXIN
- export const source = "WECHAT"
- // #endif
-
- // 微信小程序渠道编号:52010106004 支付宝小程序52010106998
- // 渠道编号
- // #ifdef MP-ALIPAY
- // export const agentId = "52010106998"
- export const agentId = "52010106004"
- // #endif
- // #ifdef MP-WEIXIN
- export const agentId = "52010106004"
- // #endif
-
- // 网点编号
- // #ifdef MP-ALIPAY
- // export const channelId = "5201010699800000001"
- export const channelId = "5201010600401140003"
- // #endif
- // #ifdef MP-WEIXIN
- export const channelId = "5201010200601130001"
- // #endif
|