report.wxml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!--pages/report/report.wxml-->
  2. <page>
  3. <view class='viewBox'>
  4. <!--地图-->
  5. <map id="map" class='mapBox' longitude="{{longitude}}" latitude="{{latitude}}" bindtap="touchMap" scale="{{scale}}" markers="{{markers}}" bindmarkertap="markertapHandle" bindregionchange="regionchange" include-points="{{includepoints}}" show-location>
  6. <cover-view class="location-info">
  7. <cover-view class="location-info-text">天气: {{weatherInfo}}</cover-view>
  8. <cover-view class="location-info-text">经度: {{longitude}}</cover-view>
  9. <cover-view class="location-info-text">纬度: {{latitude}}</cover-view>
  10. <cover-view class="location-info-text">地址: {{location}}</cover-view>
  11. </cover-view>
  12. <!-- <block wx:if="{{show}}">
  13. <cover-view class="controls" bindtap='reportWorkDetailHandle'>
  14. <cover-view class='title'>
  15. <cover-view class='look'>一键上报</cover-view>
  16. </cover-view>
  17. </cover-view>
  18. </block> -->
  19. </map>
  20. <view class="bottomBar">
  21. <view class="controls">
  22. <view class="title" bindtap='reportWorkDetailHandle'>
  23. <text class="new-report-btn-text">新建上报</text>
  24. </view>
  25. </view>
  26. <block wx:if="{{show}}">
  27. <view class="reportEditCache">
  28. <view style="display: flex;flex-direction: row;justify-content: center;">
  29. <text class="report-cache-tips-text">检测到未完成上报操作:{{reportCacheTime}}</text>
  30. </view>
  31. <view style="width: 100%;height: 100rpx;display: flex;justify-content: center;flex-direction: row;">
  32. <view style="width: 80%; background-color: lightseagreen; border-radius: 10px;height: 100rpx;">
  33. <view style="display: flex;justify-content: center;flex-direction: column;height: 100%;margin-top: 5px;" bindtap="continueReportHandle">
  34. <text class="new-report-btn-text">继续上报</text>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </block>
  40. </view>
  41. </view>
  42. </page>