SystemInfoUtil.js 990 B

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