// pages/main/addtionalreduce/home.js
var app = getApp();
var baseUrl = app.globalData.baseUrl;
Page({

  /**
   * Page initial data
   */
  data: {
    datas: ["",""],
    is_declared: false,
    additionlist:[],
    declareStatus: {
      "to_declare ": "待申报",
      "declaring": "申报中",
      "success": "审核成功",
      "failed": "审核失败"
    },
    datas02: ["子女教育", "继续教育", "赡养老人", "大病医疗", "住房贷款利息"]
  },

  /**
   * Lifecycle function--Called when page load
   */
  onLoad: function(options) {
    console.log("onLoad");
  },

  godeclare: function() {
    wx.navigateTo({
      url: 'godeclare/godeclare',
    })
  },

  godetail: function() {
    wx.navigateTo({
      url: 'godetail/godetail',
    })
  },

  lookandadd: function(e) {
    console.log("lookandadd", e);
    wx.navigateTo({
      url: 'lookandupdate/lookandupdate?index=' + e.currentTarget.id,
    })
  },

  /**
   * Lifecycle function--Called when page is initially rendered
   */
  onReady: function() {
    console.log("onReady");
  },

  /**
   * Lifecycle function--Called when page show
   */
  onShow: function() {
    console.log("onShow");
    var that = this
    this.getAdditionList()
  },

  getAdditionList: function() {
    var that = this;
    var Authorization = getApp().globalData.Authorization;
    wx.request({
      url: baseUrl + 'persontax/v1/person-additions',
      data: {
        limit: 10,
        offset: 0
      },
      header: {
        'content-type': 'application/json',
        "Authorization": Authorization
      },
      success: function(res) {
        if(res&&res.data){
          console.log("res",res)
          that.setData({
            additionlist:res.data.items
        })
        }
      }
    })
  },

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

  }
})