mirror of
https://gitee.com/yudaocode/yudao-mall-uniapp.git
synced 2025-12-30 01:32:26 +00:00
18 lines
301 B
JavaScript
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;
|