stageofpregnancy.js 2.5 KB
// pages/home/stageofpregnancy/stageofpregnancy.js
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    imgsUrls: [

      {
        imgId: '0',
        url: 'http://bronet.ibaby88.cn/bicon37@2x.png',
        name: '备孕中'

      },
      {
        imgId: '1',
        url: 'http://bronet.ibaby88.cn/bicon35@2x.png',
        name: '怀孕中'

      },
      {
        imgId: '2',
        url: 'http://bronet.ibaby88.cn/bicon36@2x.png',
        name: '有宝宝'

      },

    ],
    currentindex: 0,
    current: 0,
    cate_id: 8,
    listinfo: [],
    currentSwiper: 0,


  },

 //更换图片
  handleChange(e) {
    this.setData({
      currentindex: e.detail.current,
      currentSwiper: e.detail.current
    })
  },

  //点击下面的文字
  change: function(e) {
    this.setData({
      currentindex: e.currentTarget.dataset.index,
      currentSwiper: e.currentTarget.dataset.index,

    })

  },
  nextstep:function(){
    let that=this;
    let kind = that.data.currentindex;
    console.log(kind)
    if(kind==0){
      let that = this;
      var url = '/api/portal/talk/noHasChild';
      var params = {
        token: wx.getStorageSync('token'),

      }
      app.post(url, params).then((res) => {
        console.log(res);
        if(res==""){
      wx.navigateTo({
              url: '../communithostipal/communithostipal',
            })
        }


      }).catch((err) => {

      })



    }else if(kind==1){
      wx.navigateTo({
        url: '../nochildren/nochildren',
      })
    } else if (kind == 2) {
      wx.navigateTo({
        url: '../havechildren/havechildren',
      })
    }
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {

  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function() {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function() {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function() {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function() {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function() {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function() {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function() {

  },
  //同院交流
  communithostipal: function() {
    wx.navigateTo({
      url: '../havechildren/havechildren',
    })
  }
})