wait.ts 625 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // components/wait/wait.ts
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. loading: {
  8. type: Boolean,
  9. value: true,
  10. },
  11. },
  12. observers: {
  13. loading(val) {
  14. //@ts-ignore
  15. wx.setPageStyle({
  16. style: {
  17. overflow: val ? 'hidden' : 'unset',
  18. },
  19. })
  20. // const pages = getCurrentPages() as any[]
  21. // if (pages && pages.length > 0) {
  22. // const page = pages[pages.length - 1]
  23. // console.log(page)
  24. // }
  25. },
  26. },
  27. /**
  28. * 组件的初始数据
  29. */
  30. data: {},
  31. /**
  32. * 组件的方法列表
  33. */
  34. methods: {},
  35. })