aa
jiangping
2024-08-02 7dc29ed74ebaa8a0e66f68264d9a13f95dc3af21
wechat_jiaxuan/pages/detailDis/case.js
@@ -1,4 +1,5 @@
import { actionDo, getWholecaseInfo } from '../../api/index'
import { eventBus } from '../../utils/eventBus'
Page({
  /**
@@ -6,22 +7,31 @@
   */
  data: {
    bottomLift: 0,
    origin: '',
    showShare: false
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoadLogin(options){
    this.getDetail(options.id, options.userId || '')
    actionDo({
      actionType: 'view',
      id: options.id
    })
  },
  onUnload() {
    console.log('详情进行了销毁');
    setTimeout(() => {
      eventBus.emit('caseDeBack', this.data.info)
    }, 500)
  },
  onLoad(options) {
    var app = getApp().globalData
    this.setData({
      bottomLift: app.bottomLift
    })
    this.getDetail(options.id)
    // actionDo({
    //   actionType: 'view',
    //   id: options.id
    // })
    if(options.origin && options.origin == 'b'){
      this.setData({ origin: 'b' })
    }
    const member = wx.getStorageSync('member')
    this.setData({id: options.id, member})
  },
@@ -40,28 +50,52 @@
  },
  handleShare() {
    console.log('点击了分享');
    shareContent(this.data.info.id)
    actionDo({ actionType: 'share', id: this.data.info.id })
  },
  // onShareAppMessage: function () {
  //   // let { productDetail, userInfo } = this.data
  //   return {
  //     title: productDetail.title,
  //     path: '/pages/index/index?id=' + productDetail.id + '&shareuserid=' + userInfo.id + '&type=0'
  //   }
  // },
  onShareAppMessage: function () {
    let { info } = this.data
    console.log('点击了分享')
    return {
      path: '/pages/detailDis/case?id=' + info.id + '&userId=' + info.users.id
    }
  },
  handleAction(e){
    const actionType = e.currentTarget.dataset.code
    const { info } = this.data
    const member = wx.getStorageSync('member')
    if (member.authStatus == '0') {
      return wx.navigateTo({
        url: '/pages/auth/auth',
      })
    }
    actionDo({
      actionType,
      id: this.data.info.id
    }).then(res => {
      info.isCollection = !info.isCollection
      this.setData({info})
      wx.showToast({
        title: actionType == 'collect' ? '收藏成功' : '取消收藏',
        icon: "none"
      })
    })
  },
  getDetail(id) {
    getWholecaseInfo({id}).then(res => {
  priviewLayout() {
    wx.previewImage({
      urls: [this.data.info.layoutUlr]
    })
  },
  priviewSpace(e) {
    const url = e.currentTarget.dataset.url
    const index = e.currentTarget.dataset.index
    const { info } = this.data
    wx.previewImage({
      urls: info.apiSpaceCaseVos[index].imgList,
      current: url
    })
  },
  getDetail(id, userId) {
    getWholecaseInfo({id, salesId: userId || null}).then(res => {
      this.setData({ info: res.data })
      wx.setNavigationBarTitle({
        title: res.data.title
@@ -97,13 +131,6 @@
  },
  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload() {
  },
  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh() {
@@ -116,11 +143,4 @@
  onReachBottom() {
  },
  /**
   * 用户点击右上角分享
   */
  onShareAppMessage() {
  }
})