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

  /**
   * Page initial data
   */
  data: {
    datas: [""],
    is_declared: false,
    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
    // wx.clearStorage()
    wx.getStorage({
      key: 'is_declared',
      success: function(res) {
        console.log("is_declared", res.data)
        that.setData({
          is_declared: res.data
        })
      },
    })

    wx.getStorage({
      key: 'selectitems',
      success: function(res) {
        console.log("selectitems", res.data)
        that.setData({
          datas02: res.data
        })
      },
    })
    this.getAdditionList()
  },

  getAdditionList: function() {
    var that = this;
    var Authorization = getApp().globalData.Authorization;
    wx.request({
      url: baseUrl + 'persontax/v1/additional-settings',
      data: {
        limit: 10,
        offset: 0
      },
      header: {
        'content-type': 'application/json',
        "Authorization": Authorization
      },
      success: function(res) {

      }
    })
  },

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

  }
})