aa
jiangping
2024-08-01 f4f2891ac617aca6e2a5f1dc8f86ba3f054e3392
wechat_jiaxuan/pages/detailDis/product.js
@@ -1,7 +1,9 @@
import {
  getProductInfo,
  actionDo
  actionDo,
  getMemberInfo
} from '../../api/index'
import { eventBus } from '../../utils/eventBus'
Page({
  /**
   * 页面的初始数据
@@ -25,11 +27,28 @@
      actionType: 'view',
      id: options.id
    })
    getMemberInfo().then(res => {
      this.setData({
        member: res.data
    const member = wx.getStorageSync('member') || {}
    if(!member.id){
      getMemberInfo().then(res => {
        this.setData({
          member: res.data
        })
      })
    })
    }
  },
  onShow() {
    const member = wx.getStorageSync('member') || {}
    if(member && member.id){
      this.setData({
        member
      })
    }
  },
  onUnload() {
    console.log('详情进行了销毁');
    setTimeout(() => {
      eventBus.emit('productDeBack', this.data.info)
    }, 500)
  },
  onLoad(options) {
    var app = getApp().globalData
@@ -86,6 +105,7 @@
      })
      wx.showToast({
        title: actionType == 'collect' ? '收藏成功' : '取消收藏',
        icon: "none"
      })
    })
  },
@@ -191,9 +211,6 @@
    })
  },
  onHide() {
  },
  onUnload() {
  },
  onPullDownRefresh() {