index.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. const app = getApp()
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. nvabarData: {
  8. showCapsule: 0, //是否显示左上角图标,消息中心 1表示显示 0表示不显示
  9. showBack: 1, //返回
  10. title: '消息中心', //导航栏 中间的标题
  11. // 此页面 页面内容距最顶部的距离
  12. height: app.globalData.height * 2 + 20,
  13. },
  14. //messageList: [],
  15. messageList: [ ],
  16. skip: 0,
  17. limit: 10,
  18. total: 0,
  19. listshow: 1,
  20. // 是否到底
  21. hasMoreData: true
  22. },
  23. /**
  24. * 生命周期函数--监听页面加载
  25. */
  26. onLoad: function (options) {
  27. if (wx.getStorageSync('user') == ""){
  28. wx.redirectTo({
  29. url: '/pages/login/index'
  30. })
  31. }else{
  32. var that = this;
  33. that.searchInfo('正在加载数据...')
  34. }
  35. },
  36. // 列表查询
  37. searchInfo: function (message) {
  38. wx.showLoading({
  39. title: message,
  40. })
  41. var that = this;
  42. wx.request({
  43. url: app.globalData.publicUrl+'api/financial/viewnews/select', //真是接口
  44. method: 'post',
  45. data: {
  46. qyid: wx.getStorageSync('user')._id,//wx.getStorageSync('user')._id '5e903455d72a944fd899c59c'
  47. skip: that.data.skip,
  48. limit: that.data.limit
  49. },
  50. header: {
  51. 'content-type': 'application/json', // 默认值
  52. },
  53. success(res) {
  54. console.log(res)
  55. if (res.data.errcode == '0') {
  56. if (res.data.res.length !== 0) {
  57. if (that.data.messageList.isEmpty) {
  58. that.setData({ // 设置页面列表的内容
  59. messageList: res.data.res,
  60. })
  61. } else {
  62. that.setData({ // 设置页面列表的内容
  63. messageList: that.data.messageList.concat(res.data.res),
  64. total: res.data.total
  65. })
  66. }
  67. } else {
  68. wx.showToast({
  69. title: "没有更多数据了",
  70. duration: 1000,
  71. icon: 'none',
  72. mask: true
  73. })
  74. }
  75. }
  76. },
  77. complete: function () {
  78. wx.hideLoading();
  79. wx.hideNavigationBarLoading() //完成停止加载
  80. wx.stopPullDownRefresh() //停止下拉刷新
  81. }
  82. })
  83. },
  84. /**
  85. * 页面相关事件处理函数--监听用户下拉动作
  86. */
  87. onPullDownRefresh: function () {
  88. wx.showNavigationBarLoading() //在标题栏中显示加载
  89. this.data.skip = 1
  90. this.data.messageList=[]
  91. this.searchInfo('正在刷新数据')
  92. },
  93. /**
  94. * 页面上拉触底事件的处理函数
  95. */
  96. onReachBottom: function () {
  97. const pageNum = this.data.skip;
  98. const _pagenum = Math.ceil(this.data.total / this.data.limit);
  99. if (pageNum < _pagenum) {
  100. this.setData({
  101. skip: pageNum + 1 //设置下一页
  102. })
  103. this.searchInfo('正在刷新数据'); //查询数据
  104. } else {
  105. wx.showToast({
  106. title: '没有更多数据',
  107. })
  108. }
  109. },
  110. })