| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--pages/report/report.wxml-->
- <page>
- <view class='viewBox'>
- <!--地图-->
- <map id="map" class='mapBox' longitude="{{longitude}}" latitude="{{latitude}}" bindtap="touchMap" scale="{{scale}}" markers="{{markers}}" bindmarkertap="markertapHandle" bindregionchange="regionchange" include-points="{{includepoints}}" show-location>
- <cover-view class="location-info">
- <cover-view class="location-info-text">天气: {{weatherInfo}}</cover-view>
- <cover-view class="location-info-text">经度: {{longitude}}</cover-view>
- <cover-view class="location-info-text">纬度: {{latitude}}</cover-view>
- <cover-view class="location-info-text">地址: {{location}}</cover-view>
- </cover-view>
- <!-- <block wx:if="{{show}}">
- <cover-view class="controls" bindtap='reportWorkDetailHandle'>
- <cover-view class='title'>
- <cover-view class='look'>一键上报</cover-view>
- </cover-view>
- </cover-view>
- </block> -->
- </map>
- <view class="bottomBar">
- <view class="controls">
- <view class="title" bindtap='reportWorkDetailHandle'>
- <text class="new-report-btn-text">新建上报</text>
- </view>
- </view>
- <block wx:if="{{show}}">
- <view class="reportEditCache">
- <view style="display: flex;flex-direction: row;justify-content: center;">
- <text class="report-cache-tips-text">检测到未完成上报操作:{{reportCacheTime}}</text>
- </view>
- <view style="width: 100%;height: 100rpx;display: flex;justify-content: center;flex-direction: row;">
- <view style="width: 80%; background-color: lightseagreen; border-radius: 10px;height: 100rpx;">
- <view style="display: flex;justify-content: center;flex-direction: column;height: 100%;margin-top: 5px;" bindtap="continueReportHandle">
- <text class="new-report-btn-text">继续上报</text>
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </page>
|