// pages/start/start.js
// 请注意常量的命名必须是Page
const Page = require('../../utils/ald-stat.js').Page;
const app=getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
   listdata:''
  },
  //启动页
 getWelcomeInfo(openid){
  let that=this;
  let url ='index/getWelcomeInfo';
  let params={
   doctorid: app.globalData.doctorid,
   openid: openid
  }
  app.post(url,params).then((res)=>{
   that.setData({
    listdata: res
   })
   //医生的赋值
   app.globalData.doctorid = res.doctorid;
   app.globalData.doctor_id = res.doctor_id;
   //记录小程序打开次数
   app.setStatisticsOpenTimes(openid);
   wx.setStorageSync('token', res.token);
   wx.setStorageSync('userInfo', res.user);
   setTimeout(function(){
    wx.switchTab({
     url: '/pages/index/index',
    })
   },3000)
  }).catch((errMsg)=>{
   console.log(errMsg)
  })
 },
 getopenid(){
   wx.clearStorageSync('token')
  let that=this;
  wx.login({
   success: (res) => {
    let url = 'public/getSessionKey';
    let params = {
     code: res.code
    }
    app.post(url, params).then((res) => {
     that.getWelcomeInfo(res.openid);
     wx.setStorageSync('openid', res.openid);
    }).catch((errMsg) => {
     console.log(errMsg)
    })
   }
  })
 },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
   let that = this;
   if (options.scene != undefined) {
    var scene = decodeURIComponent(options.scene);
    var doctorid = scene.split("=")[1];
    
    if (doctorid != undefined) {
     app.globalData.doctorid = doctorid;
    }
   }
   if (options.doctorid != undefined) {
    app.globalData.doctorid = options.doctorid;
   }
   that.getopenid();
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

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

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

  },

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

  },

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

  },

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

  },

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

  }
})