
	<view class="mc-cascader-view mc-class">
		<view wx:if="{{ useTabs }}" class="mc-cascader-view__tabs">
			<view wx:for="{{ tabs }}" wx:key="value" data-index="{{ index }}" class="mc-cascader-view__tab {{ tabIndex === index ? 'is-active' : '' }}" bind:tap="handleTabTap">
				{{ item.label }}
			</view>
		</view>
		<view class="mc-cascader-view__header">
			<view wx:for="{{ subValues }}" wx:key="*this" class="mc-cascader-view__label {{currentIndex === (index + indexOffset) ? 'is-active' : ''}}" data-index="{{index + indexOffset}}" bindtap="handleClickLabel">
				{{ currentLabel[index + indexOffset] }}
			</view>
			<view wx:if="{{hasChildren}}" class="mc-cascader-view__label {{currentIndex === currentValue.length ? 'is-active' : ''}}" bindtap="handleClickTip">
				请选择
			</view>
		</view>
		<mc-cascader-col value="{{colValue}}" dataSource="{{colData}}" index="{{currentIndex}}" mc-class="mc-cascader-col" style="overflow: hidden;flex: 1;display:flex;" bind:change="handleChange"/>
	</view>
