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