Files
yudao-mall-uniapp/sheep/platform/provider/wechat/index.js
2025-11-27 10:51:29 +08:00

18 lines
301 B
JavaScript

// #ifdef H5
import service from './officialAccount';
// #endif
// #ifdef MP-WEIXIN
import service from './miniProgram';
// #endif
// #ifdef APP-PLUS
import service from './openPlatform';
// #endif
let wechat = {};
if (typeof service !== 'undefined') {
wechat = service;
}
export default wechat;