index.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // nova-werun/pages/activity/index.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. statusBarHeight: 0, // 状态栏高度
  8. screenHeight: 0, // 屏幕高度
  9. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  10. bottomNavHeight: 0, // 底部导航栏高度
  11. contentHeight: 0, // 可用内容高度
  12. contentHeight2: 0,
  13. contentpadding: 0, //顶部padding高度
  14. },
  15. /**
  16. * 生命周期函数--监听页面加载
  17. */
  18. onLoad: function (options) {
  19. // 计算
  20. const systemInfo = wx.getSystemInfoSync();
  21. const statusBarHeight = systemInfo.statusBarHeight || 0;
  22. const screenHeight = systemInfo.screenHeight || 0;
  23. const custom = wx.getMenuButtonBoundingClientRect();
  24. const customHeight = custom.height + 10 + 2 || 0;
  25. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  26. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  27. const contentHeight = (screenHeight - bottomNavHeight - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  28. this.setData({
  29. statusBarHeight,
  30. screenHeight,
  31. customHeight,
  32. bottomNavHeight,
  33. contentpadding,
  34. contentHeight
  35. });
  36. },
  37. /**
  38. * 生命周期函数--监听页面初次渲染完成
  39. */
  40. onReady: function () {
  41. },
  42. /**
  43. * 生命周期函数--监听页面显示
  44. */
  45. onShow: function () {
  46. },
  47. /**
  48. * 生命周期函数--监听页面隐藏
  49. */
  50. onHide: function () {
  51. },
  52. /**
  53. * 生命周期函数--监听页面卸载
  54. */
  55. onUnload: function () {
  56. },
  57. /**
  58. * 页面相关事件处理函数--监听用户下拉动作
  59. */
  60. onPullDownRefresh: function () {
  61. },
  62. /**
  63. * 页面上拉触底事件的处理函数
  64. */
  65. onReachBottom: function () {
  66. },
  67. /**
  68. * 用户点击右上角分享
  69. */
  70. onShareAppMessage: function () {
  71. }
  72. })