access.js 2.6 KB

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