场景:
<view class="bottom-content-box" v-for="(item, index) in bottomData" :key="index" @tap="setBackground1" :data-postid="'bd'+index">
<view class="bottom-content-text">{{ item.text }}</view>
<view class="bottom-content-text">{{ item.num }}</view>
</view>
setBackground1(e) {
var id = e.currentTarget.dataset.postid;
//这里给选中的view添加背景
}
我想点击某个view触发setBackground1这个事件,在事件中给点中的那个view加个背景图片,想了很多办法改变style都没生效,
我用的是uni-app,请问写法是怎么样的,谢谢!