sharePage.wxml 576 B

12345678910111213
  1. <!-- pages/cert/sharePage/sharePage.wxml -->
  2. <view class="container">
  3. <block wx:if="{{sharedCertList.length > 0}}">
  4. <view wx:for="{{sharedCertList}}" wx:key="index" class="cert-item">
  5. <text class="cert-name">证书名称: {{item.name || '未知证书'}}</text>
  6. <text class="cert-expiry">有效期至: {{item.expiryDate || 'N/A'}}</text>
  7. <!-- 根据实际返回的字段调整 item.name 和 item.expiryDate -->
  8. </view>
  9. </block>
  10. <block wx:else>
  11. <text>暂无分享的证书信息</text>
  12. </block>
  13. </view>