freeIncomeDetail.js 1.5 KB

Page({

  /**
   * Page initial data
   */
  data: {
    infoList:[{}],
    project: ["正常工资薪金", "劳务报酬", "稿酬", "特许经营权使用费"],
    deductcontent:["1","2"],
    deductproperty: ["其他"],
  },

  /**
   * 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 () {

  },

// 所得项目
  bindProjectChange:function(e){},

// 减免事项名称
  bindDeductContent: function (e) { },

// 减免性质名称
  bindDeductProperty: function (e) { },

// 免税收入金额
  bindIncome: function (e) { 

  },

  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 () {

  }
})