wxml
<view class='zright' bindtap='choseCoupon' data-info='{{item}}' data-id='{{index}}'>
js
choseCoupon: function (e) {
console.log(e.currentTarget.dataset.id)
console.log(e.currentTarget.dataset.info)
}
wxml
<view class='zright' bindtap='choseCoupon' data-info='{{item}}' data-id='{{index}}'>
js
choseCoupon: function (e) {
console.log(e.currentTarget.dataset.id)
console.log(e.currentTarget.dataset.info)
}