comment.js 2.6 KB
// pages/index/comment/comment.js
const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    max: 100,
    list_id: '',
    content: '',
    type: ''
  },

  getText(e) {
    var content = e.detail.value;
    this.setData({
      content: content
    })
    var len = parseInt(content.length);
    if (len > this.data.max) return;
    this.setData({
      currentWordNumber: len //当前字数  
    });
  },

  submitComplain() {
    let url = '/home/index/report'
    let params = {
      list_id: this.data.list_id,
      text: this.data.content
    }
    let header = {
      'XX-Token': wx.getStorageSync('token'),
      'XX-Device-Type': 'wxapp'
    }
    app.post(url, params, header).then((res) => {
      if (res.data.code == 20000) {
        wx.showToast({
          title: '提交成功',
          icon: 'none'
        })
        wx.navigateBack({
          delta: 1
        })
      }else{
        wx.showToast({
          title: '举报内容不能为空',
          icon:'none'
        })
      }
    })
  },

  //评论
  submitComment() {
    let url = '/home/index/tablePost'
    let params = {
      list_id: this.data.list_id,
      text: this.data.content
    }
    let header = {
      'XX-Token': wx.getStorageSync('token'),
      'XX-Device-Type': 'wxapp'
    }
    app.post(url, params, header).then((res) => {
      if (res.data.code == 20000) {
        wx.showToast({
          title: '提交成功',
          icon: 'none'
        })
        wx.navigateBack({
          delta: 1
        })
      } else {
        wx.showToast({
          title: '评论不能为空',
          icon: 'none'
        })
      }
    })
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
    options.id ? (this.setData({
      list_id: options.id
    })) : ''
    this.setData({
      type: options.type
    })
    if (options.type == 'review') {
      wx.setNavigationBarTitle({
        title: '评论',
      })
    }
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})