donationDetail.js 1.2 KB
// pages/main/finalpay/donationDetail/donationDetail.js
Page({

  /**
   * Page initial data
   */
  data: {
    infoList:[{}],
    deductPick:["30%","100%"],
  },

  /**
   * Lifecycle function--Called when page load
   */
  onLoad: function (options) {

  },

  /**
   * Lifecycle function--Called when page is initially rendered
   */
  onReady: function () {

  },

  /**
   * Lifecycle function--Called when page show
   */
  onShow: function () {

  },

  addItem: function () {//继续添加
    var info = this.data.infoList;
    console.log(info);
    info.push(this.data.infoList.length);
    this.setData({
      infoList: info
    });
  },

  goSubmit: function (e) {
    console.log('form发生了submit事件,携带数据为:', e.detail.value)
  },

  /**
   * Lifecycle function--Called when page hide
   */
  onHide: function () {

  },

  /**
   * Lifecycle function--Called when page unload
   */
  onUnload: function () {

  },

  /**
   * Page event handler function--Called when user drop down
   */
  onPullDownRefresh: function () {

  },

  /**
   * Called when page reach bottom
   */
  onReachBottom: function () {

  },

  /**
   * Called when user click on the top right corner to share
   */
  onShareAppMessage: function () {

  }
})