apply.wxml 1.5 KB

1234567891011121314151617181920212223242526272829
  1. <view class="box">
  2. <view class="list" style="height:{{height}}rpx" bindtouchstart="{{height<=245 ? '' :'touchStart'}}" catchtouchmove='move' animation="{{animatheightadd}}">
  3. <view class="search">
  4. <image src="{{img}}weapp/search.png" style="width:36rpx;height:36rpx;margin-right:20rpx;margin-top:0rpx;"></image>
  5. <input placeholder="请输入地区" bindinput="input" value="{{value}}" placeholder-class="place"></input>
  6. </view>
  7. <scroll-view scroll-y="true" bindscroll="scroll" bindscrolltolower="tolower">
  8. <view wx:for="{{suggestion}}" class="city_list" bindtap="selected" data-index="{{index}}" wx:key="key">
  9. <image src="{{img}}weapp/location_city.png"></image>
  10. <view>
  11. <text class="title">{{item.title}}</text>
  12. <text class="title1">{{item.address}}</text>
  13. </view>
  14. <image src="{{item.select ? '/img/duigou.png' : ''}}" style="width:48rpx;height:48rpx;"></image>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. <view class="bottom" bindtap="submit">
  19. <view>
  20. <text>提交申请</text>
  21. </view>
  22. </view>
  23. <map id="map" longitude='{{longitude}}' latitude='{{latitude}}' scale='16' show-location="true" bindregionchange="bindregionchange" style="height:{{mapHeight*2}}rpx" animation="{{animatMap}}">
  24. <cover-image src="/img/map.png" style="width:30rpx;height:54rpx;" class="coverImage"></cover-image>
  25. </map>
  26. <view class="circle" bindtap="posi" animation="{{animaticon}}" style="height:{{iconHeight}}%">
  27. <image src="{{img}}weapp/icon3.png" class="iconImg"></image>
  28. </view>
  29. </view>