- <!--mHome/pages/cerserach/cerserach.wxml-->
- <!-- tabs -->
- <view class="tab-view">
- <van-tabs swipeable bind:change="onTabChange">
- <van-tab wx:for="{{tabs}}" wx:for-item="itm" wx:key="id" id="{{itm.id}}" title="{{itm.name}}"/>
- </van-tabs>
- </view>
- <!-- 证书 -->
- <view class="cers">
- <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>
- </view>
|