绩效考核手机版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

41 lines
586 B

import {
getSupport
} from './get-support.js';
let deviceCached;
function calcDevice({
userAgent
} = {}) {
const support = getSupport();
const device = {
ios: false,
android: false
};
const res = uni.getSystemInfoSync();
if (res.platform == "android") {
device.os = 'android';
device.android = true;
}
if (res.platform == "ios") {
device.os = 'ios';
device.ios = true;
} // Export object
return device;
}
function getDevice(overrides = {}) {
if (!deviceCached) {
deviceCached = calcDevice(overrides);
}
return deviceCached;
}
export {
getDevice
};