signIn.wxml 956 B

12345678910111213141516171819202122232425
  1. <map class="map" latitude="{{markers[0].latitude}}" longitude="{{markers[0].longitude}}" markers="{{markers}}" scale="17" enable-poi />
  2. <view class="head">
  3. <view class="main">
  4. <view class="time">{{time}}</view>
  5. <view class="location">
  6. <text class="iconfont icon-a-wodemendianxinxidizhi" />{{content.address}}
  7. </view>
  8. </view>
  9. <navigator url="#" bindtap="getLocation">
  10. <view class="iconfont icon-tabgenjindongtai" />
  11. <view class="font">
  12. 重新定位
  13. </view>
  14. </navigator>
  15. </view>
  16. <view style="height: 20rpx;" />
  17. <Yl_field id='Form' form='{{form}}' bind:interrupt="interrupt" />
  18. <view class="footer">
  19. <view class="count" />
  20. <view class="but-box">
  21. <van-button custom-class='but delete' bind:click="rander">重置</van-button>
  22. <van-button custom-class='but' disabled="{{!content.address}}" bind:click="submit">确定</van-button>
  23. </view>
  24. </view>