topline_detail.js 3.1 KB
// pages/topline_detail/topline_detail.js
const app = getApp();
var wxParse = require('../../wxParse/wxParse.js')
Page({

 /**
  * 页面的初始数据
  */
 data: {
  postdata:[],
  id:'',
  haspower:false
 },
 //爱心头条详情
 getpostdata() {
  let that = this;
  let url = 'home/Elephant/info';
  let param={
   id:that.data.id
  }
  app.post(url, param).then((res) => {
   let postdata=res;
   for (let obj of postdata.comments){
    if (obj.avatar.length==0){
     obj.avatar ='https://wxapp.xianghejia.cn/imgs/nav07@2x.png'
    }
   }
   that.setData({
    postdata: postdata
   })
   wxParse.wxParse('content', 'html', res.content, that, 5);
  }).catch((errMsg) => {
   console.log(errMsg)
  })
 },
 //获取sessionKey和openid (登陆授权)
 start(e) {
  let that = this;
  app.globalData.userInfo = e.detail.userInfo;
  wx.login({
   success: function (s) {
    let url = 'wxapp/public/getSessionKey';
    if (s.code) {
     var code = s.code;
     var param = {
      code: code
     }
     app.post(url, param).then((res) => {
      let param = {
       openid: res.openid,
       session_key: res.session_key,
       encrypted_data: e.detail.encryptedData,
       iv: e.detail.iv
      }
      let url = 'wxapp/public/login';
      app.post(url, param).then((res) => {
       wx.setStorageSync('token', res.token);
       that.setData({
        haspower: true
       })
      }).catch((errMsg) => {
       console.log(errMsg);
      })
     }).catch((errMsg) => {
      console.log(errMsg);
     })
    }
   }
  });
 },
 //判断是否登陆
 is_register() {
  let that = this;
  wx.login({
   success: function (s) {
    let url = 'wxapp/public/getSessionKey';
    if (s.code) {
     var code = s.code;
     var param = {
      code: code
     }
     app.post(url, param).then((res) => {
      let url = 'wxapp/public/is_register';
      let params = {
       openid: res.openid
      }
      app.post(url, params).then((res) => {
       if (res.code == '40000') {
        wx.setStorageSync('token', res.data);
        that.setData({
         haspower: true
        })
       } else {
        that.setData({
         haspower: false
        })
       }
      }).catch((err) => {
       console.log(err);
      })
     }).catch((errMsg) => {
      console.log(errMsg);
     })
    }
   }
  });
 },
 /**
  * 生命周期函数--监听页面加载
  */
 onLoad: function (options) {
  let that=this;
  that.setData({
   id:options.id
  })
  that.is_register();
  that.getpostdata();
 },

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

 },

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

 },

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

 },

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

 },

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

 },

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

 },

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

 }
})