小程序-点击显示隐藏


        
        
        收藏
    

当点击收藏的时候,去改变is_focus 的值,来控制收藏的显示状态

data:{
    is_focus:'',//收藏状态
},
 //商品收藏
    bindFavorite:function(){
        var that = this;
      MBC.Ajax({
          url:api.favorite,
          is_login:true,
          data:{
              goods_id:this.data.goods_id
          },
          success:function (res) {
              console.log(res);
              if (res.code == 1){
                  if (res.result.fav == 1){
                      that.setData({
                          is_focus:1
                      })
                  } else {
                      that.setData({
                          is_focus:0
                      })
                  }
              } else {
                  wx.showToast({
                      title: res.result.msg,
                      duration: 2000
                  })
              }
          }

      })
    },

 

你可能感兴趣的:(get,技能)