微信小程序之收藏view背景色以及文字状态的改变

上代码

{{shoucang}}
  
.detail-shoucang{
  float: right;
  padding: 5rpx 15rpx;
}

.detail-shoucang.text{
 color: #fff;
  font-size: 28rpx;
  line-height: 51rpx;
}
 data: {
    BgColor: '#ff7315',
    shoucang:"收藏"
  }
shoucang: function(){
    var bgColor = this.data.BgColor == '#999999' ? '#999999' : '#999999';
    // 设置背景颜色数据
    this.setData({
      BgColor: bgColor,
      shoucang:"已收藏"
    });

  },

oK!

你可能感兴趣的:(html,微信小程序开发)