access.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. this.getPhoneBoxInfo(options.id);
  18. },
  19. getPhoneBoxInfo(uid){
  20. httpRequestApi.getPhotoBoxInfoById({ uid }).success((res) => {
  21. this.setData({
  22. PhotoBoxInfo: res.data.data,
  23. avatar: res.data.data.user.avatar
  24. })
  25. })
  26. },
  27. //预览图片
  28. preview: function ({ currentTarget }) {
  29. console.log(currentTarget)
  30. const imageUrl = [currentTarget.id];
  31. wx.previewImage({
  32. urls: imageUrl
  33. })
  34. },
  35. userLike: function ({ currentTarget }) {
  36. console.log(currentTarget)
  37. console.log(this.data.PhotoBoxInfo.isLike)
  38. if(!this.data.PhotoBoxInfo.isLike) {
  39. httpRequestApi.setPhotoBoxLike({ target: currentTarget.id }).success((res) => {
  40. this.setData({
  41. likeStatus: res.data.data
  42. })
  43. this.getPhoneBoxInfo(currentTarget.id);
  44. })
  45. }
  46. },
  47. /**
  48. * 生命周期函数--监听页面初次渲染完成
  49. */
  50. onReady: function () {
  51. },
  52. /**
  53. * 生命周期函数--监听页面显示
  54. */
  55. onShow: function () {
  56. },
  57. /**
  58. * 生命周期函数--监听页面隐藏
  59. */
  60. onHide: function () {
  61. },
  62. /**
  63. * 生命周期函数--监听页面卸载
  64. */
  65. onUnload: function () {
  66. },
  67. /**
  68. * 页面相关事件处理函数--监听用户下拉动作
  69. */
  70. onPullDownRefresh: function () {
  71. },
  72. /**
  73. * 页面上拉触底事件的处理函数
  74. */
  75. onReachBottom: function () {
  76. },
  77. /**
  78. * 用户点击右上角分享
  79. */
  80. onShareAppMessage: function () {
  81. }
  82. })