jifenjilu.js 2.0 KB
// pages/myblock/jifenjilu/jifenjilu.js
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    page:1,
    list:[]
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.getjifen()
  },

  //获取积分记录
  getjifen(){

    let that = this;
    let url = 'user/Center/user_score', params = {
      page:that.data.page

    }
    app.post(url, params).then((res) => {
      console.log(res);
      for (var obj of res.list) {
        console.log(obj.create_time)
        var date = new Date(obj.create_time * 1000)
        var Y = date.getFullYear();
        var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
        var D = (date.getDate() + 1 < 10 ? '0' + (date.getDate()) : date.getDate())
        var h = date.getHours() + ':';
        var m = date.getMinutes() + ':';
        var s = date.getSeconds();
        // 拼接
        obj.create_time = Y + "-" + M + "-" + D
      }

      that.setData({
        list:that.data.list.concat(res.list)
      })

      // let newlist = that.data.list;
      // console.log(newlist)
      
      // that.setData({
      //   list:newlist
      // })



    }).catch((err) => {

    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

    this.getjifen()
  },

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

  }
})