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

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

  /**
   * Lifecycle function--Called when page load
   */
  onLoad: function (options) {
    var that= this
    console.log("options", options);
    this.setData({
      cur_index: options.index
    })
    wx.getStorage({
      key: 'selectitems',
      success: function (res) {
        console.log("selectitems", res.data)
        var new_title = res.data[options.index].message
        if (new_title=='住房'){
          new_title = res.data[options.index].extra_message
        }
        wx.setNavigationBarTitle({
          title: new_title,
        })
        that.setData({
          title: new_title,
          datas02: res.data
        }) 
      },
    })
    
    // if (this.data.datas02 && this.data.datas02.length>0){
    //   for (var i = 0; i < this.data.datas02.length;i++){
        
    //   }
    // }
  },

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

  },

  /**
   * Lifecycle function--Called when page show
   */
  onShow: function () {
    // wx.showLoading({
    //   title: '加载中',
    // })
    // setTimeout(function(){
    //   wx.hideLoading()
    // },2000)
  },

  lookimg:function(){//查看材料
    wx.showToast({
      title: '查看材料',
    })
  },

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

  }
})