/**
- 获取应用场景值
*/
export function getAppChannel() : string {
// #ifdef APP-PLUS
return 'app'
// #endif
// #ifdef MP-WEIXIN
return 'weapp'
// #endif
// #ifdef H5
return isWeixinBrowser() ? 'wechat' : 'h5'
// #endif
}
import { getToken, getAppChannel } from './common'
0 个回复