index.wxml 584 B

1234567891011
  1. <view class="pullDownList t-class {{ childBoxHeight > 0 ? 'actived' : '' }}">
  2. <view class="switchBox" catch:tap="switchHandle">
  3. <view class="name">{{ name }}</view>
  4. <view class="tag type-{{tag}}">{{ tag === 'func' ? '能力' : ''}}{{ tag === 'template' ? '模版' : ''}}{{ tag === 'case' ? '案例' : ''}}</view>
  5. </view>
  6. <view class="childBox" style="height: {{ childBoxHeight }}rpx">
  7. <view class="child {{item.class}}" wx:for="{{childArr}}" wx:key="name" data-item="{{item}}" bindtap="tapChild">
  8. {{ item.name }} {{ item.label }}
  9. </view>
  10. </view>
  11. </view>