上代码
<view class="detail-shoucang" style="background-color:{{BgColor}}" bindtap='shoucang'><text class="detail-shoucang.text">{{shoucang}}</text></view>
</view>
.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!