| 1234567891011121314151617181920 |
- <view style="height: 294rpx;overflow:hidden">
- <map enable-scroll="{{false}}" enable-zoom="{{false}}" markers="{{markers}}" scale="{{10}}" include-points="{{points}}" latitude="{{latitude}}" longitude="{{longitude}}" style="width: 100%;height: 334rpx;" name="map"></map>
- </view>
- <image bindtap="previewImage" class="media" src="{{media.viewUrl}}" data-src="{{media.viewUrl}}" mode="aspectFill"></image>
- <view class="df aic jscb mt50 mb50" wx:if="{{!isMarkVisable}}">
- <button bindtap="showMark" data-audit="{{1}}" class="next">通过</button>
- <button bindtap="noPass" data-audit="{{2}}" class="next">不通过</button>
- </view>
- <block wx:else="">
- <view class="mt50 ml30 mb30 c3">请选择图片类型:</view>
- <view class="df aic jscb mt20 mb50">
- <button bindtap="markMedia" data-type="{{0}}" class="next mark">日报</button>
- <button bindtap="markMedia" data-type="{{1}}" class="next mark">验仓</button>
- <button bindtap="markMedia" data-type="{{2}}" class="next mark">清仓</button>
- </view>
- </block>
- <view class="df aic jscb">
- <button open-type="share" data-type="{{1}}" class="next">分享航次照片</button> <button open-type="share" data-type="{{2}}" class="next">分享航行报告</button>
- </view>
|