微信小程序 - 按钮点击切换颜色踩坑

2020-03-24  本文已影响0人  coderfl
      <view>
        <van-button
          wx:for="{{info.color}}"
          wx:key="index"
          class="sel-btn"
          custom-style="{{index === colorIndex ? actStyle : ''}}"
          type="default"
          size="small"
          bind:tap="colorClick"
          data-index="{{index}}">
          {{item.col}}
        </van-button>
      </view>

// js文件
  data: {
    colorIndex:null,
    actStyle: 'color: #ed4566;border-color: #ed4566;'
  },
  methods: {
    colorClick(e){
      this.setData({colorIndex:e.currentTarget.dataset.index});
    }
  }
上一篇 下一篇

猜你喜欢

热点阅读