| 12345678910111213141516171819 |
- <!--mHome/pages/cerserach/cerserach.wxml-->
- <!-- 导航栏 -->
- <van-nav-bar custom-style="background-color: #E92020">
- <van-icon slot="left" name="arrow-left" size="25px" color="white" bind:click="backToParent"/>
- <text slot="title" style="color: white;">钻石证书查询</text>
- </van-nav-bar>
- <!-- 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>
|