index.ts 308 B

1234567891011121314151617181920
  1. export default new (class {
  2. private systemInfo = {
  3. statusBarHeight: 0
  4. }
  5. constructor() {
  6. wx.getSystemInfo({
  7. success: (res) => {
  8. this.systemInfo = res;
  9. }
  10. })
  11. }
  12. /**
  13. * 获取系统信息
  14. */
  15. getSystemInfo() {
  16. return this.systemInfo;
  17. }
  18. })