system_util.ts 337 B

1234567891011121314151617181920212223
  1. //系统信息
  2. var systemInfo : UniApp.GetSystemInfoResult
  3. function getCurrentPlatform() {
  4. uni.getSystemInfo().then(res => {
  5. systemInfo = res;
  6. });
  7. }
  8. //获取系统信息
  9. function getInfo() {
  10. return systemInfo;
  11. }
  12. function getAppInfo() {
  13. return uni.getAppBaseInfo()
  14. }
  15. export default {
  16. getCurrentPlatform,
  17. getAppInfo,
  18. getInfo
  19. }