{
hvaeUnusedGiftCardList && unusedGiftCardList && unusedGiftCardList.map(item => {
return <View className='item' key={item.giftNo}>
<View className='item-left'>
<View>{item.giftName}</View>
<View>{item.giftNo}</View>
<View>状态:{item.status === 'true' ? '已激活' : '未激活'}</View>
</View>
{item.status === 'false' && <Button openType='share' onClick={() => this.openShare(item.giftName, item.giftNo, item.giftTypeName)} hoverClass='filter' className='item-right'>赠送</Button>}
<View className='month-card-tip'>{item.giftTypeName}</View>
</View>
})
这个是代码片段,用taro的,就是想获取到this.openShare(item.giftName, item.giftNo, item.giftTypeName)} 这个里面的数据
data-,然后点击事件取e
可以,都可以