审查视图

pages/discount-card/discount-card.js 2.4 KB
倪静楠 authored
1 2
// pages/discount-card/discount-card.js
let method = require("../../utils/reuqest.js")
倪静楠 authored
3
let util = require("../../utils/util.js")
倪静楠 authored
4 5 6 7 8 9 10
Page({
  data: {
    startTime: '',
    endTime: '',
    pages: "1",
    cardList: "",
    id: '',
倪静楠 authored
11
    bottomHint: false //触底提示
倪静楠 authored
12 13 14 15
  },

  //获取优惠券
  getDiscounCard() {
倪静楠 authored
16
    let that = this;
倪静楠 authored
17 18 19 20 21 22
    let postData = {
      page: that.data.pages,
      size: 10,
      type: 0
    }
    method.postRequest("/coupon/list", postData, data => {
倪静楠 authored
23
      wx.stopPullDownRefresh()
倪静楠 authored
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
      let lists = that.data.pages == 1 ? data.data : that.data.cardList.concat(data.data)
      if (data.statusCode == 0) {
        that.setData({
          cardList: lists
        })
        var list = that.data.cardList;
        list.forEach((item, index) => {
          var str = item.startTime;
          str = str.replace(/\-/g, ".")
          that.setData({
            startTime: str.trim().split(" ")[0],

          })
          var str1 = item.endTime;
          str1 = str1.replace(/\-/g, ".")
          that.setData({
            endTime: str1.trim().split(" ")[0]
          })

        })
倪静楠 authored
44
      } else {
倪静楠 authored
45 46 47
        setTimeout(() => {
          util.getUser()
        }, 2000)
倪静楠 authored
48 49 50
      }
    })
  },
倪静楠 authored
51
倪静楠 authored
52 53 54 55 56 57 58

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    let that = this;
    that.getDiscounCard()
倪静楠 authored
59
    console.log(that.data.pages, 'onload')
倪静楠 authored
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
  },

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

  },

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

  },

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

  },

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

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
倪静楠 authored
93 94
  onRefresh() {
    this.setData({
倪静楠 authored
95
      pages: 1,
倪静楠 authored
96 97 98 99
      cardList: []
    })
    this.getDiscounCard();
  },
倪静楠 authored
100
  onPullDownRefresh: function () {
倪静楠 authored
101
    this.onRefresh()
倪静楠 authored
102 103 104 105 106 107 108 109 110
  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    this.setData({
      pages: Number(this.data.pages) + 1
    })
倪静楠 authored
111 112 113 114 115 116 117 118 119 120
    this.getDiscounCard();

    this.setData({
      bottomHint: true
    })
    setTimeout(() => {
      this.setData({
        bottomHint: false
      })
    }, 2000)
倪静楠 authored
121 122 123 124 125 126 127 128 129
  },

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

  }
})