cerserach.wxml 516 B

12345678910111213
  1. <!--mHome/pages/cerserach/cerserach.wxml-->
  2. <!-- tabs -->
  3. <view class="tab-view">
  4. <van-tabs swipeable bind:change="onTabChange">
  5. <van-tab wx:for="{{tabs}}" wx:for-item="itm" wx:key="id" id="{{itm.id}}" title="{{itm.name}}"/>
  6. </van-tabs>
  7. </view>
  8. <!-- 证书 -->
  9. <view class="cers">
  10. <button wx:for="{{active == 0 ? ncers : icers}}" wx:for-item="itm" wx:for-index="idx" wx:key="id" class="cers-button {{itm.isCheck ? 'active' : ''}}" id="{{itm.id}}" bindtap="onButtonPressed">{{itm.name}}</button>
  11. </view>