怎么获取当前点击的值填入另外一个标签内?


<view bindtap="shuj" class="fff">
<picker data-index="{{index}}" mode="region">
<text>送至</text>
<text class="jt">></text>
<text>{{textt}}</text>
<view class="youyi">预计送达时间暂时无法估计</view>
</picker>
</view>
js
shuj:function(e){
var index=e.currentTarget.dataset.index;
console.log(index)
},
这样打印出来的是undefined
