godetail.js 1.6 KB
// pages/main/addtionalreduce/godetail/godetail.js

var app = getApp();
var baseUrl = app.globalData.baseUrl;
Page({

  /**
   * Page initial data
   */
  data: {
    additiondata: {}
  },

  /**
   * Lifecycle function--Called when page load
   */
  onLoad: function (options) {
    console.log("onLoad", options.datas)
    this.setData({
      additiondata: JSON.parse(options.datas)
    })
  },

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

  },

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

  },

  lookandadd:function(e){
    console.log("lookandadd", e);
    if (this.data.additiondata.options && this.data.additiondata.options.length>0){
      var newstatus = this.data.additiondata.options[e.currentTarget.id]
      // if (newstatus == 'house_fund_rent' || newstatus == 'house_fund_loan'){
      //   newstatus = "house_fund"
      // }
      wx.navigateTo({
        url: '../lookandupdate/lookandupdate?status=' + newstatus + "&legal_entity_id=" + this.data.additiondata.legal_entity_id + "&legal_entity=" + this.data.additiondata.legal_entity,
      })
    }
  },

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

  }
})