SystemInfoUtil.js 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. export default class SystemInfoUtil {
  2. static PC = 'pc';
  3. static IOS = 'ios';
  4. static ANDROID = 'android';
  5. /**
  6. * 平台 ios,andorid,pc
  7. */
  8. static platform;
  9. /**
  10. * 基础库版本 已处理成数值7.0.0->700 容易比较 可以查map到微信什么版本
  11. */
  12. static wxSDKVersion;
  13. static init() {
  14. uni.getSystemInfo({
  15. success: function (res) {
  16. console.log('SystemInfoUtil');
  17. console.log(res);
  18. if (res.platform == 'devtools') {
  19. SystemInfoUtil.platform = SystemInfoUtil.PC;
  20. } else if (res.platform == 'ios') {
  21. SystemInfoUtil.platform = SystemInfoUtil.IOS;
  22. } else if (res.platform == 'android') {
  23. SystemInfoUtil.platform = SystemInfoUtil.ANDROID;
  24. }
  25. let version = res.SDKVersion;
  26. version = version.replace(/\./g, '');
  27. SystemInfoUtil.wxSDKVersion = version;
  28. }
  29. });
  30. }
  31. }