tidings.js 1.6 KB
import {
  request
} from '../../request/index.js'
const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    publicList: [],
    publicList1: []
  },

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

  },

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

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    this.getPublicList()
  },
  async getPublicList() {
    let that = this
    const {
      data: {
        data
      }
    } = await request({
      url: 'api/my/msgInfo',
      method: 'GET'
    })
    // //  console.log(data, "消息");
    that.setData({
      publicList: data
    })
    // data.forEach(value => {
    //   if (value.type == 0) {
    //     obj.push(value)
    //   } else {
    //     obj1.push(value)
    //   }
    // })
    // that.setData({
    //   publicList: obj,
    //   publicList1: obj1
    // })
    // //  console.log(that.data.publicList, that.data.publicList1);


  },
  TotidingsDetails(e) {
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: "/pages/tidingsDetails/tidingsDetails?id=" + id
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  }
})