faveritehostipal.js 1.9 KB
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    jd:'',
    wd:'',
    hostipallist:''
  },

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

  getfaveriotehos(){
    let that = this;
    var url = '/api/portal/mine/getMyHospital';
    var params = {
      token: wx.getStorageSync('token'),
      lng: that.data.jd,
      lat:that.data.wd

    }
    app.post(url, params).then((res) => {
      console.log(res);
      that.setData({
        hostipallist:res
      })

      console.log(that.data.hostipallist)



    }).catch((err) => {

    })

  },

  //进入医院详情页
  entertail: function (e) {
    console.log(e)
    console.log(e.currentTarget.dataset.hospitalid)
    wx.setStorageSync('hospitalid', e.currentTarget.dataset.hospitalid);

    wx.navigateTo({
      url: '../../home/hometail/hometail?hospital_id=' + e.currentTarget.dataset.hospitalid,
    })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

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

    wx.getLocation({

      type: 'wgs84',
      success: function (res) {
        console.log(res)
        var latitude = res.latitude
        var longitude = res.longitude
        that.setData({
          wd: latitude,
          jd: longitude
        })

        that.getfaveriotehos()
      }
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  }
})