import { queryNotice } from "../../../../services/api/common/index" // pages/msg/msglist/msglist.ts Page({ /** * 页面的初始数据 */ data: { /// 公告消息 msgs: [{}], /// tabs tabs: [{id: 1, title: '公告'}, {id: 2, title: '消息'}], /// 是否空数据 isEmpty: false, }, /// 进入公告消息详情页 goToMsgDetail(r: any) { let jsonStr = JSON.stringify(this.data.msgs[r.currentTarget.id]) wx.navigateTo({ url: '/mHome/pages/msg/msgdetail/msgdetail?id='+jsonStr }) }, /// onChange onChange(e: any) { this.queryNotice(e.detail.index+1) }, /// 查询公告消息信息 queryNotice(msgtype: number){ /// loding..... wx.showLoading({ title: '加载中....'}) /// 发送查询请求 queryNotice({ data: { msgType: msgtype, loginID: wx.getStorageSync('LoginID') }, success:(res) => { /// 加载成功 this.setData({ msgs: res.data }) }, fail: (emsg) => { /// 加载失败 wx.showToast({ title: '公告消息请求失败, 原因::'+emsg, icon: 'error', }) }, complete: () => { /// hide loding..... wx.hideLoading() /// 判断数据是否为空 this.setData({ isEmpty: this.data.msgs.length == 0 }) } }) }, /** * 生命周期函数--监听页面加载 */ onLoad() { /// 查询公告消息 this.queryNotice(1) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady() { }, /** * 生命周期函数--监听页面显示 */ onShow() { }, /** * 生命周期函数--监听页面隐藏 */ onHide() { }, /** * 生命周期函数--监听页面卸载 */ onUnload() { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh() { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom() { }, /** * 用户点击右上角分享 */ onShareAppMessage() { } })