healthInsurDetail.js 1.8 KB
// pages/main/finalpay/otherDeductDetail/healthInsurDetail.js
var app = getApp();
var baseUrl = app.globalData.baseUrl;
Page({

  /**
   * Page initial data
   */
  data: {
    year: "2019",
    infoList: [{}],
  },

  /**
   * Lifecycle function--Called when page load
   */
  onLoad: function (options) {
    this.getInfoList()
  },

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

  },

  getInfoList: function () {
    var that = this
    this.Authorization = getApp().globalData.Authorization;
    wx.request({
      url: baseUrl + "payroll/v1/settlement-tax/commercial-insurance-tax",
      header: {
        'Authorization': this.Authorization
      },
      data: {
        "years": that.data.year,
      },
      success: function (result) {
        console.log("infoList", result)
        if (result.statusCode == 200) {
          that.setData({
            infoList: result.data.items
          })
        }
      },
    })
  },


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

  }
})