index.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. // pages/myFinance/index.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. nvabarData: {
  9. showCapsule: 0, //是否显示左上角图标,消息中心 1表示显示 0表示不显示
  10. showBack: 1, //返回
  11. title: '我的融资', //导航栏 中间的标题
  12. // 此页面 页面内容距最顶部的距离
  13. height: app.globalData.height * 2 + 20,
  14. },
  15. list: []
  16. },
  17. loadData: function () {
  18. wx.showLoading({
  19. title: '加载中',
  20. })
  21. let user = wx.getStorageSync('user')
  22. console.log('user',user._id)
  23. wx.request({
  24. method:"post",
  25. url: app.globalData.publicUrl + 'api/financial/intelligentDocking/myDocking',
  26. data: {uid:user._id},
  27. success:(e) => {
  28. console.log('success=============',e);
  29. if(e.data.errcode == 0){
  30. if (e.data.result.length > 0) {
  31. this.setData({
  32. list: e.data.result
  33. });
  34. } else{
  35. wx.showToast({
  36. title: "没有更多数据了",
  37. duration: 2000,
  38. icon: 'none',
  39. mask: true
  40. })
  41. }
  42. } else {
  43. wx.showToast({
  44. title: e.data.details?e.data.details:e.data.errmsg,
  45. icon: 'none',
  46. duration: 1500
  47. })
  48. }
  49. },
  50. complete: function () {
  51. wx.hideLoading();
  52. }
  53. })
  54. },
  55. // 页面跳转
  56. // 判断id
  57. bindtap: function (e) {
  58. console.log('id',e.currentTarget.id)
  59. wx.navigateTo({
  60. url: '/pages/myFinanceDetail/index?id=' + e.currentTarget.id // 希望跳转过去的页面
  61. })
  62. },
  63. /**
  64. * 生命周期函数--监听页面加载
  65. */
  66. onLoad: function (options) {
  67. let user = wx.getStorageSync('user')
  68. console.log('user',user._id)
  69. if (user) {
  70. this.loadData();
  71. } else {
  72. wx.showToast({
  73. title: '登录失效',
  74. icon: 'none',
  75. duration: 1500
  76. })
  77. wx.navigateTo({
  78. url: '/pages/login/index'
  79. })
  80. }
  81. },
  82. /**
  83. * 生命周期函数--监听页面初次渲染完成
  84. */
  85. onReady: function () {
  86. },
  87. /**
  88. * 生命周期函数--监听页面显示
  89. */
  90. onShow: function () {
  91. },
  92. /**
  93. * 生命周期函数--监听页面隐藏
  94. */
  95. onHide: function () {
  96. },
  97. /**
  98. * 生命周期函数--监听页面卸载
  99. */
  100. onUnload: function () {
  101. },
  102. /**
  103. * 页面相关事件处理函数--监听用户下拉动作
  104. */
  105. onPullDownRefresh: function () {
  106. },
  107. /**
  108. * 页面上拉触底事件的处理函数
  109. */
  110. onReachBottom: function () {
  111. },
  112. /**
  113. * 用户点击右上角分享
  114. */
  115. onShareAppMessage: function () {
  116. }
  117. })