teacherFile.ts 787 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // component/teacher/teacherFile/teacherFile.ts
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. },
  8. /**
  9. * 组件的初始数据
  10. */
  11. data: {
  12. scrollHeight: 0
  13. },
  14. lifetimes: {
  15. attached: function () {
  16. // 在组件实例被从页面节点树添加时执行
  17. let that = this;
  18. wx.getSystemInfo({
  19. success: function (res) {
  20. that.setData({
  21. scrollHeight: res.windowHeight
  22. });
  23. }
  24. });
  25. },
  26. detached: function () {
  27. // 在组件实例被从页面节点树移除时执行
  28. },
  29. },
  30. /**
  31. * 组件的方法列表
  32. */
  33. methods: {
  34. }
  35. })