index.js 249 B

123456789101112131415
  1. // #ifdef H5
  2. import service from './officialAccount';
  3. // #endif
  4. // #ifdef MP-WEIXIN
  5. import service from './miniProgram';
  6. // #endif
  7. // #ifdef APP-PLUS
  8. import service from './openPlatform';
  9. // #endif
  10. const wechat = service;
  11. export default wechat;