childMatch.js 2.7 KB

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