childMatch.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // pages/childMatch/childMatch.js
  2. import httpRequestApi from '../../utils/APIRequest';
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. photoBoxList: []
  9. },
  10. //点击跳转到相册
  11. album: ({ currentTarget }) => {
  12. console.log(currentTarget)
  13. wx.navigateTo({
  14. url: `/pages/access/access?id=${currentTarget.id}`
  15. })
  16. },
  17. /**
  18. * 生命周期函数--监听页面加载
  19. */
  20. onLoad: function (options) {
  21. if(options.share && !wx.getStorageSync('uid')) {
  22. wx.reLaunch({
  23. url: '/pages/index/index?ind=0'
  24. })
  25. return false;
  26. }
  27. this.getPhotoBoxList();
  28. },
  29. getPhotoBoxList() {
  30. httpRequestApi.getPhotoBoxList().success((res) => {
  31. this.setData({
  32. photoBoxList: res.data.data.list
  33. })
  34. })
  35. },
  36. /**
  37. * 生命周期函数--监听页面初次渲染完成
  38. */
  39. onReady: function () {
  40. },
  41. /**
  42. * 生命周期函数--监听页面显示
  43. */
  44. onShow: function () {
  45. this.getPhotoBoxList();
  46. },
  47. /**
  48. * 生命周期函数--监听页面隐藏
  49. */
  50. onHide: function () {
  51. },
  52. /**
  53. * 生命周期函数--监听页面卸载
  54. */
  55. onUnload: function () {
  56. },
  57. /**
  58. * 页面相关事件处理函数--监听用户下拉动作
  59. */
  60. onPullDownRefresh: function () {
  61. },
  62. /**
  63. * 页面上拉触底事件的处理函数
  64. */
  65. onReachBottom: function () {
  66. },
  67. /**
  68. * 用户点击右上角分享
  69. */
  70. onShareAppMessage: function () {
  71. return {
  72. title: '七彩童年',
  73. path: `pages/childMatch/childMatch?share=true`,
  74. success: function (res) {
  75. // 转发成功
  76. console.log("转发成功:" + JSON.stringify(res));
  77. // var shareTickets = res.shareTickets;
  78. // if (shareTickets.length == 0) {
  79. // return false;
  80. // }
  81. // //可以获取群组信息
  82. // wx.getShareInfo({
  83. // shareTicket: shareTickets[0],
  84. // success: function (res) {
  85. // console.log(res)
  86. // }
  87. // })
  88. },
  89. fail: function (res) {
  90. // 转发失败
  91. console.log("转发失败:" + JSON.stringify(res));
  92. }
  93. }
  94. }
  95. })