1234567891011121314151617181920212223242526272829303132 |
- export default class SystemInfoUtil {
- static PC = 'pc';
- static IOS = 'ios';
- static ANDROID = 'android';
- /**
- * 平台 ios,andorid,pc
- */
- static platform;
- /**
- * 基础库版本 已处理成数值7.0.0->700 容易比较 可以查map到微信什么版本
- */
- static wxSDKVersion;
- static init() {
- uni.getSystemInfo({
- success: function (res) {
- console.log('SystemInfoUtil');
- console.log(res);
- if (res.platform == 'devtools') {
- SystemInfoUtil.platform = SystemInfoUtil.PC;
- } else if (res.platform == 'ios') {
- SystemInfoUtil.platform = SystemInfoUtil.IOS;
- } else if (res.platform == 'android') {
- SystemInfoUtil.platform = SystemInfoUtil.ANDROID;
- }
- let version = res.SDKVersion;
- version = version.replace(/\./g, '');
- SystemInfoUtil.wxSDKVersion = version;
- }
- });
- }
- }
|