index.wxml 818 B

12345678910111213141516
  1. <view class="i-index i-class">
  2. <scroll-view scrollY bindscroll="handlerScroll" scrollTop="{{scrollTop}}" style="{{scrollHeight}}">
  3. <view class="index-title">当前定位</view>
  4. <view bindtap="changeGPSCommunity" class="local-position-content">
  5. <span style="color:{{skin.color}}">{{localCity.districtName}}</span>
  6. GPS定位
  7. </view>
  8. <slot></slot>
  9. <view catchtouchend="handlerTouchEnd" catchtouchmove="handlerTouchMove" catchtouchstart="handlerTouchMove" class="i-index-fixed">
  10. <view catchtap="handlerFixedTap" class="i-index-fixed-item" data-index="{{index}}" wx:for="{{fixedData}}" wx:key="{{index}}">
  11. {{item}}
  12. </view>
  13. </view>
  14. <view class="i-index-tooltip" style="{{isTouches?'display:block':'display:none'}}">{{currentName}}</view>
  15. </scroll-view>
  16. </view>