| 12345678910111213141516171819202122232425 |
- <!-- pages/school/sharePage/sharePage.wxml -->
- <view class="container">
- <block wx:if="{{sharedShipyardInfo}}">
- <view class="info-card">
- <view class="info-title">{{sharedShipyardInfo.name || '船厂信息'}}</view>
- <view class="info-item">
- <text class="label">船厂地址:</text>
- <text class="value">{{sharedShipyardInfo.address || '暂无地址'}}</text>
- </view>
- <view class="info-item">
- <text class="label">联系电话:</text>
- <text class="value">{{sharedShipyardInfo.phone || '暂无电话'}}</text>
- </view>
- <view class="info-item">
- <text class="label">主营业务:</text>
- <text class="value">{{sharedShipyardInfo.majorBusiness || '暂无介绍'}}</text>
- </view>
- <!-- 根据实际返回的对象字段进行调整 -->
- <!-- 例如: sharedShipyardInfo.contactPerson, sharedShipyardInfo.website 等 -->
- </view>
- </block>
- <block wx:else>
- <text class="empty-text">暂无分享的船厂信息</text>
- </block>
- </view>
|