sharePage.wxml 1.1 KB

12345678910111213141516171819202122232425
  1. <!-- pages/school/sharePage/sharePage.wxml -->
  2. <view class="container">
  3. <block wx:if="{{sharedShipyardInfo}}">
  4. <view class="info-card">
  5. <view class="info-title">{{sharedShipyardInfo.name || '船厂信息'}}</view>
  6. <view class="info-item">
  7. <text class="label">船厂地址:</text>
  8. <text class="value">{{sharedShipyardInfo.address || '暂无地址'}}</text>
  9. </view>
  10. <view class="info-item">
  11. <text class="label">联系电话:</text>
  12. <text class="value">{{sharedShipyardInfo.phone || '暂无电话'}}</text>
  13. </view>
  14. <view class="info-item">
  15. <text class="label">主营业务:</text>
  16. <text class="value">{{sharedShipyardInfo.majorBusiness || '暂无介绍'}}</text>
  17. </view>
  18. <!-- 根据实际返回的对象字段进行调整 -->
  19. <!-- 例如: sharedShipyardInfo.contactPerson, sharedShipyardInfo.website 等 -->
  20. </view>
  21. </block>
  22. <block wx:else>
  23. <text class="empty-text">暂无分享的船厂信息</text>
  24. </block>
  25. </view>