
	<picker-view class="mc-picker-view" value="{{currentValue}}" indicator-style="{{indicatorStyle}}" indicator-class="{{indicatorClass}}" style="width: 100%" bindchange="handleChange" bindpickstart="handlePickStart" bindpickend="handlePickEnd">
		<picker-view-column wx:for="{{currentData}}" wx:for-item="column" wx:key="index">
			<view class="mc-picker-view__item" wx:for="{{column}}" wx:key="value" style="height: 80rpx">
				<view class="mc-picker-view__item-text">{{item.label}}</view>
			</view>
		</picker-view-column>
	</picker-view>
