pinglun.js 2.8 KB
// pages/myblock/pinglun/pinglun.js
const app = getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
    page: 1,
    list:[],
    noData: true,
    noMore:!1,
    edit:!1,
    delId:[],
    
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.getList();
  },
  edit(){
    this.setData({
      edit:!this.data.edit
    })
  },
  choose(e){
    console.log(e)
    let checked = this.data.list[e.currentTarget.id].checked, id = e.currentTarget.dataset.chooseid,start;
    this.data.list[e.currentTarget.id].checked = !this.data.list[e.currentTarget.id].checked;
    checked ? (start = this.data.delId.indexOf(id), this.data.delId.splice(start, 1)) : this.data.delId.push(id);
    this.setData({
      list: this.data.list,
      delId: this.data.delId
    })
  },
  getList(){
    let url = 'user/Center/my_comment', params = {
        page: this.data.page
      };
      app.post(url, params).then(r => {
        var list = this.data.page == 1 ? r.list : this.data.list.concat(r.list);
        this.setData({
          list: list,
          totalPage: r.total_page,
          noData: list.length > 0 ? true : false,
          noMore: r.totalPage==r.page?!0:!1
        })
      })
  },
  clearComment(){
    let delId = [],that = this;
    this.data.list.forEach(el=>{
      delId.push(el.id)
    });
    wx.showModal({
      title: '提示',
      content: '确认清空所有评论?',
      success: function(res){
        if(res.confirm){
          that.delComent(delId)
        }
      }
    })

  },
  delChoose(){
    let that = this;
    wx.showModal({
      title: '提示',
      content: '确认删除这些选择项',
      success: function (res) {
        if (res.confirm) {
          that.delComent(that.data.delId)
        }
      }
    })
  },
  delComent(obj){
    let t = this, url = 'index/Common/comment_delete ',params={
      ids:obj
    };
    app.post(url,params).then(r=>{
      wx.showToast({
        title: '删除成功',
        icon:'none',
        duration: 1300
      })
      this.setData({
        edit: false,
        page: 1
      })
      this.getList();
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

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

  }
})