comment.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. // pages/follow/follow.js
  2. const $api = require('../../utils/api.js').API;
  3. const $push = require('../../utils/api.js').PUSH;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. list: [],
  10. page:1,
  11. total:0,
  12. show:0
  13. },
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. onLoad: function (options) {
  18. this.setData({
  19. id:options.id
  20. })
  21. this.getData();
  22. },
  23. next: function () {
  24. if (this.data.list.length < this.data.total) {
  25. const page = this.data.page + 1
  26. this.setData({
  27. page: page
  28. })
  29. this.getData()
  30. }
  31. },
  32. getData(){
  33. wx.showLoading({
  34. title: '正在加载',
  35. })
  36. var list = this.data.list
  37. $api.getComment({
  38. page: this.data.page, page_size: 20,
  39. group_id: this.data.id
  40. }).then(res => {
  41. wx.hideLoading()
  42. res.data.data.list.forEach(item => {
  43. list.push(item)
  44. })
  45. this.setData({
  46. list: list,
  47. total: res.data.data.total,
  48. show:1
  49. })
  50. })
  51. },
  52. pushToday(e){
  53. $push.pushToday(e.currentTarget.dataset)
  54. },
  55. /**
  56. * 生命周期函数--监听页面初次渲染完成
  57. */
  58. onReady: function () {
  59. },
  60. /**
  61. * 生命周期函数--监听页面显示
  62. */
  63. onShow: function () {
  64. },
  65. /**
  66. * 生命周期函数--监听页面隐藏
  67. */
  68. onHide: function () {
  69. },
  70. /**
  71. * 生命周期函数--监听页面卸载
  72. */
  73. onUnload: function () {
  74. },
  75. /**
  76. * 页面相关事件处理函数--监听用户下拉动作
  77. */
  78. onPullDownRefresh: function () {
  79. },
  80. /**
  81. * 页面上拉触底事件的处理函数
  82. */
  83. onReachBottom: function () {
  84. },
  85. /**
  86. * 用户点击右上角分享
  87. */
  88. onShareAppMessage: function () {
  89. }
  90. })