myCertificate.wxml 569 Bytes
<!--pages/myCertificate/myCertificate.wxml-->
<custom-navi text="证书管理" back="{{true}}" home="{{true}}"></custom-navi>
<view class='myCertificate'>
  <view style='position: fixed;bottom: 0;left: 0;font-size:14px;color:#fff;background: #0D76ED;width: 100%;height: 40px;line-height: 40px;text-align: center;'bindtap="getCertificate">
    申领证书
  </view>
  <view class="certificateItem" wx:for="{{certificateList}}">
    <view>
      <image src='{{item.front_image}}'></image>
      <text>{{item.title}}[{{item.status}}]</text>
    </view>
  </view>
</view>