| 123456789101112131415161718192021 |
- <view class="container">
- <!-- 顶部标题 -->
- <view class="header">海事年检通知</view>
- <!-- 内容区域 -->
- <view class="content">
- <view class="card">
- <view class="notice-title">{{notice.title}}</view>
- <view class="notice-info">
- <text class="notice-author">{{notice.author}}</text>
- <text class="notice-date">{{notice.date}}</text>
- </view>
- <image class="dock-photo" mode="aspectFill" src="{{notice.photoUrl}}"></image>
- <view class="notice-content">{{notice.content}}</view>
- <view class="contact-section">
- <text class="contact-info">{{notice.contactInfo}}</text>
- <button class="contact-btn" bindtap="makePhoneCall">拨打电话</button>
- </view>
- <button class="share-btn" open-type="share">分享通知</button>
- </view>
- </view>
- </view>
|