collect.js 4.2 KB
const app = getApp();

Page({

  /**
   * 页面的初始数据
   */
  data: {
    windowHeight: 654,
    maxtime: "",
    isHiddenLoading: true,
    isHiddenToast: true,
    dataList: {},
    countDownDay: 0,
    countDownHour: 0,
    countDownMinute: 0,
    collectList: ''
  },
  bindViewTap: function () {
    wx.navigateTo({
      // url: '../logs/logs'
    })
  },

  //团购倒计时
  countDown() {
    let that = this
    let objs = Object.assign([], that.data.collectList)
    let now_time = parseInt(new Date().getTime())
    // console.log('现在的时间:'+now_time)

    for (let obj of objs) {

      let end_time = obj.end_time * 1000
      // console.log(end_time)
      let open_time = obj.open_time * 1000
      if (now_time < open_time) {
        // console.log(333)
        //活动未开始
      } else if (now_time > end_time) {
        // console.log(222)
        //活动结束
      } else {
        // console.log(1111)
        let time = (end_time - now_time) / 1000;
        let day = parseInt(time / (60 * 60 * 24));
        let hou = parseInt(time % (60 * 60 * 24) / 3600);
        let min = parseInt(time % (60 * 60 * 24) % 3600 / 60);
        let sec = parseInt(time % (60 * 60 * 24) % 3600 % 60);

        obj.day = that.timeFormat(day),
          obj.hou = that.timeFormat(hou),
          obj.min = that.timeFormat(min),
          obj.sec = that.timeFormat(sec)

        // console.log(obj.day, obj.hou, obj.min, obj.sec)
      }
    }
    that.setData({
      collectList: objs
    })
    console.log(that.data.collectList)
    setTimeout(that.countDown, 1000);
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      windowHeight: wx.getStorageSync('windowHeight')
    });
    this.collectFunc()
  },

  // 收藏功能
  collectFunc() {
    let that = this;
    let url = '/user/index/collect';
    let params = {
      page: 1
    }
    let header = {
      "XX-Token": wx.getStorageSync('token'),
      "XX-Device-Type": 'wxapp'
    }
    app.post(url, params, header).then((res) => {
      console.log(res);
      // 列表值
      that.setData({
        collectList: res.data.list
      })

      console.log(that.data.collectList)


    }).catch((err) => {

    })
  },


  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {
    var totalSecond = 1505540080 - Date.parse(new Date()) / 1000;

    var interval = setInterval(function () {
      // 秒数
      var second = totalSecond;

      // 天数位
      var day = Math.floor(second / 3600 / 24);
      var dayStr = day.toString();
      if (dayStr.length == 1) dayStr = '0' + dayStr;

      // 小时位
      var hr = Math.floor((second - day * 3600 * 24) / 3600);
      var hrStr = hr.toString();
      if (hrStr.length == 1) hrStr = '0' + hrStr;

      // 分钟位
      var min = Math.floor((second - day * 3600 * 24 - hr * 3600) / 60);
      var minStr = min.toString();
      if (minStr.length == 1) minStr = '0' + minStr;

      // 秒位
      var sec = second - day * 3600 * 24 - hr * 3600 - min * 60;
      var secStr = sec.toString();
      if (secStr.length == 1) secStr = '0' + secStr;

      this.setData({
        countDownDay: dayStr,
        countDownHour: hrStr,
        countDownMinute: minStr,
        countDownSecond: secStr,
      });
      totalSecond--;
      if (totalSecond < 0) {
        clearInterval(interval);
        // wx.showToast({
        //   title: '活动已结束',
        // });
        this.setData({
          countDownDay: '00',
          countDownHour: '00',
          countDownMinute: '00',
          countDownSecond: '00',
        });
      }
    }.bind(this), 1000);
  },
  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})