all-evaluate.js 1.7 KB
// pages/all-evaluate/all-evaluate.js
let method = require("../../utils/reuqest.js")
Page({
  data: {
    list:[],
    goodsId: '',
    page: 1,
    bottomHint: false
  },
  //评价列表
  getList(goodsId) {
    let postData = {
      goodsId: goodsId,
      page: this.data.page,
      size: 10
    }
    method.postRequest("/goods/goodsComment", postData, data => {
      wx.stopPullDownRefresh();
      if (data.statusCode == 0) {
        this.setData({
          list: data.data
        })
      }
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
      this.setData({
        goodsId:options.goodsId
      })
      this.getList(options.goodsid)
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    this.getList()
  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onRefresh() {
    // wx.showNavigationBarLoading();
    this.setData({
      page: 1,
      list:[]
    })
    this.getList()
  },
  onPullDownRefresh: function () {
    this.onRefresh()
  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    this.setData({
      page: this.data.page + 1,
    })
    this.getList();
    this.setData({
      bottomHint: true
    })
    setTimeout(() => {
      this.setData({
        bottomHint: false
      })
    }, 2000)
  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  }
})