morecomment.js 3.1 KB
// pages/morecomment/morecomment.js
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    // '好评', '差评',
    comentarr: ['全部',  '带图评论'],
    coment:0,
    page:1,
    shopid:'',
    commentlist:[],
    chuantype:0

  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
    console.log(options)
    this.setData({
      shopid:options.shopid
    })
    this.getmorecomment()

  },
  selitem(e){
    console.log(e)
    this.setData({
      coment: e.currentTarget.dataset.index,
      page:1,
      commentlist:[]
    })
    if(e.currentTarget.dataset.index==0){
      this.setData({
        chuantype:0
      })
    }else{
      this.setData({
        chuantype:3
      })
    }
    console.log(this.data.coment)
    this.getmorecomment()
  
  },
  // 获取更多的评论列表
  getmorecomment(){
    let that = this;
    console.log(that.data.coment)
    var url = '/remark/getRemarkList';
    var params = {
      page: that.data.page,
      shop_id:that.data.shopid,
      limit:15,
      type:that.data.chuantype

    }
    app.post(url, params,"post").then((res) => {
      console.log(res);
      that.setData({
        commentlist: that.data.commentlist.concat(res.data)
      })
      that.data.commentlist.forEach(function(value,index,array){
        console.log('484389843',value)
        var imagesk=[];
        if(value.images.length>9){
          for(var i=0;i<value.images.length;i++){
            if(i<9){
              imagesk.push(value.images[i])
            }
          }
          value.images=imagesk
        }
       
      })

      that.setData({
        commentlist:that.data.commentlist
      })


    }).catch((err) => {

    })
  },

    // 评论图片预览
    previewimgk(e){
      console.log(e)
      let pindex=e.currentTarget.dataset.pindex;
      let index=e.currentTarget.dataset.index;
      wx.previewImage({
        current: this.data.commentlist[pindex].images[index],
        urls:this.data.commentlist[pindex].images,
        success: function (res) { },
        fail: function (res) { },
        complete: function (res) { },
        })
  
    },
  // 点评详情
  comentdetail(e) {
    let commentid = e.currentTarget.dataset.id
    wx.navigateTo({
      url: '/pages/commentdetail/commentdetail?commentid=' + commentid + '&shopid=' + this.data.shopid,
    })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function() {

  },

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

  },

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

  },

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

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function() {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function() {
    let newpage=this.data.page;
    newpage++;
    this.setData({
      page:newpage
    })

    this.getmorecomment()
  },

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

  }
})