access.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // pages/access/access.js
  2. import httpRequestApi from '../../utils/APIRequest';
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. PhotoBoxInfo: {},
  9. likeStatus: false
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad: function (options) {
  15. console.log(options)
  16. this.getPhoneBoxInfo(options.id);
  17. },
  18. getPhoneBoxInfo(uid){
  19. httpRequestApi.getPhotoBoxInfoById({ uid }).success((res) => {
  20. this.setData({
  21. PhotoBoxInfo: res.data.data
  22. })
  23. })
  24. },
  25. //预览图片
  26. preview: function ({ currentTarget }) {
  27. console.log(currentTarget)
  28. const imageUrl = [currentTarget.id];
  29. wx.previewImage({
  30. urls: imageUrl
  31. })
  32. },
  33. userLike: function ({ currentTarget }) {
  34. console.log(currentTarget)
  35. console.log(this.data.PhotoBoxInfo.isLike)
  36. if(!this.data.PhotoBoxInfo.isLike) {
  37. httpRequestApi.setPhotoBoxLike({ target: currentTarget.id }).success((res) => {
  38. this.setData({
  39. likeStatus: res.data.data
  40. })
  41. this.getPhoneBoxInfo(currentTarget.id);
  42. })
  43. }
  44. },
  45. /**
  46. * 生命周期函数--监听页面初次渲染完成
  47. */
  48. onReady: function () {
  49. },
  50. /**
  51. * 生命周期函数--监听页面显示
  52. */
  53. onShow: function () {
  54. },
  55. /**
  56. * 生命周期函数--监听页面隐藏
  57. */
  58. onHide: function () {
  59. },
  60. /**
  61. * 生命周期函数--监听页面卸载
  62. */
  63. onUnload: function () {
  64. },
  65. /**
  66. * 页面相关事件处理函数--监听用户下拉动作
  67. */
  68. onPullDownRefresh: function () {
  69. },
  70. /**
  71. * 页面上拉触底事件的处理函数
  72. */
  73. onReachBottom: function () {
  74. },
  75. /**
  76. * 用户点击右上角分享
  77. */
  78. onShareAppMessage: function () {
  79. }
  80. })