index.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // nova-werun/pages/activity/detail-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. objectId:"",
  15. },
  16. /**
  17. * 生命周期函数--监听页面加载
  18. */
  19. onLoad: function (options) {
  20. // 计算
  21. const systemInfo = wx.getSystemInfoSync();
  22. const statusBarHeight = systemInfo.statusBarHeight || 0;
  23. const screenHeight = systemInfo.screenHeight || 0;
  24. const custom = wx.getMenuButtonBoundingClientRect();
  25. const customHeight = custom.height + 10 + 2 || 0;
  26. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  27. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  28. const contentHeight = (screenHeight - bottomNavHeight - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  29. this.setData({
  30. statusBarHeight,
  31. screenHeight,
  32. customHeight,
  33. bottomNavHeight,
  34. contentpadding,
  35. contentHeight
  36. });
  37. this.setData({
  38. objectId:options.id
  39. })
  40. console.log(this.data.objectId);
  41. },
  42. /**
  43. * 生命周期函数--监听页面初次渲染完成
  44. */
  45. onReady: function () {
  46. },
  47. /**
  48. * 生命周期函数--监听页面显示
  49. */
  50. onShow: function () {
  51. },
  52. /**
  53. * 生命周期函数--监听页面隐藏
  54. */
  55. onHide: function () {
  56. },
  57. /**
  58. * 生命周期函数--监听页面卸载
  59. */
  60. onUnload: function () {
  61. },
  62. /**
  63. * 页面相关事件处理函数--监听用户下拉动作
  64. */
  65. onPullDownRefresh: function () {
  66. },
  67. /**
  68. * 页面上拉触底事件的处理函数
  69. */
  70. onReachBottom: function () {
  71. },
  72. /**
  73. * 用户点击右上角分享
  74. */
  75. onShareAppMessage: function () {
  76. }
  77. })