index.js
387 Bytes
export function appType() {
let type = 'web'
// #ifdef MP-WEIXIN
type = 'wechat'
// #endif
// #ifdef APP-ANDROID
type = 'android'
// #endif
// #ifdef APP-IOS
type = 'ios'
// #endif
return type
}
export function platform() {
let type = 'android'
// #ifdef APP-ANDROID
type = 'android'
// #endif
// #ifdef APP-IOS
type = 'ios'
// #endif
return type
}