activity-rule.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. const util = require('../../utils/util');
  2. const app = getApp()
  3. const WxParse = require('../../wxParse/wxParse.js')
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarHeight: 0,
  10. content: ''
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad: function (options) {
  16. this.setData({
  17. navbarHeight: util.getNavbarHeight(),
  18. })
  19. //改变头部电量条背景色
  20. wx.setNavigationBarColor({
  21. frontColor: '#ffffff',
  22. backgroundColor: '#ffffff',
  23. });
  24. wx.getSystemInfo({
  25. success: (res) => {
  26. this.setData({
  27. screenWidth: res.screenWidth
  28. });
  29. }
  30. })
  31. this.getUserActivityRule()
  32. },
  33. /**
  34. * 返回上一页
  35. */
  36. back() {
  37. wx.navigateBack({
  38. delta: 1,
  39. });
  40. },
  41. /**
  42. * 生命周期函数--监听页面初次渲染完成
  43. */
  44. onReady: function () {
  45. },
  46. /**
  47. * 生命周期函数--监听页面显示
  48. */
  49. onShow: function () {
  50. },
  51. /**
  52. * 生命周期函数--监听页面隐藏
  53. */
  54. onHide: function () {
  55. },
  56. /**
  57. * 生命周期函数--监听页面卸载
  58. */
  59. onUnload: function () {
  60. },
  61. /**
  62. * 页面相关事件处理函数--监听用户下拉动作
  63. */
  64. onPullDownRefresh: function () {
  65. },
  66. /**
  67. * 页面上拉触底事件的处理函数
  68. */
  69. onReachBottom: function () {
  70. },
  71. /**
  72. * 获取活动规则
  73. */
  74. getUserActivityRule: function () {
  75. let page = this
  76. app.api.getUserActivityRule("", function (res) {
  77. if (res.code > 0) {
  78. let article = res.data
  79. WxParse.wxParse('article', 'html', article, page,5);
  80. page.setData({
  81. content: res.data
  82. })
  83. } else {
  84. wx.showToast({
  85. title: res.msg,
  86. icon: 'none'
  87. })
  88. }
  89. })
  90. }
  91. })