lookandupdate.js 1.5 KB
// pages/main/addtionalreduce/childreneducate/childreneducate.js
Page({

  /**
   * Page initial data
   */
  data: {
    cur_index:0,
    add_text_arr: ["添加子女", "添加继续教育", "添加老人", "添加大病医疗", "添加住房贷款利息"],
    title_arr: ["子女教育", "继续教育","赡养老人","大病医疗","住房贷款利息"]
  },

  /**
   * Lifecycle function--Called when page load
   */
  onLoad: function (options) {
    console.log("options", options);
    this.setData({
      cur_index: options.index
    })
    wx.setNavigationBarTitle({
      title: this.data.title_arr[this.data.cur_index]
    })
  },

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

  },

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

  },

  lookimg:function(){//查看材料

  },

  goadd:function(e){//添加
    wx.navigateTo({
      url: '../addextrainfo/addextrainfo?index=' + this.data.cur_index,
    })
  },

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

  }
})