jiangping
2024-07-30 0e8cc18ee5d35479d30408851c21e5f4c0fb487a
wechat_staff/components/disProduct/index.js
@@ -22,7 +22,7 @@
    sortType: 'NORMAL',
    catalogCode: ""
  },
  attached() {
   attached() {
    this.getCatelist()
    var app = getApp()
    console.log('globalData', app.globalData);
@@ -35,6 +35,28 @@
    }
  },
  methods: {
    refreshCount(){
      let  temData = wx.getStorageSync('conentCountTemp')
      if(temData && this.data.datalist){
          var dataList =this.data.datalist;
          dataList.forEach(item =>{
              if(item.id+'' == temData.id+'' ){
                  item.viewCount = (item.viewCount ||0)+1;
                  if( item.isCollection != temData.isCollection){
                    if(item.isCollection){
                        item.collectCount = (item.collectCount || 0)-1
                        item.collectCount  =   item.collectCount >=0?  item.collectCount :0;
                    } else{
                        item.collectCount = (item.collectCount || 0)+1
                    }
                    item.isCollection = temData.isCollection
                }
              }
          })
          this.setData({datalist:dataList})
           wx.setStorageSync('conentCountTemp',null)
      }
    },
    getCatelist(){
      getCatalogList({
        catalogCode: 'product_intro'