1234567891011121314151617181920212223242526272829 |
- <view class="box">
- <view class="list" style="height:{{height}}rpx" bindtouchstart="{{height<=245 ? '' :'touchStart'}}" catchtouchmove='move' animation="{{animatheightadd}}">
- <view class="search">
- <image src="{{img}}weapp/search.png" style="width:36rpx;height:36rpx;margin-right:20rpx;margin-top:0rpx;"></image>
- <input placeholder="请输入地区" bindinput="input" value="{{value}}" placeholder-class="place"></input>
- </view>
- <scroll-view scroll-y="true" bindscroll="scroll" bindscrolltolower="tolower">
- <view wx:for="{{suggestion}}" class="city_list" bindtap="selected" data-index="{{index}}" wx:key="key">
- <image src="{{img}}weapp/location_city.png"></image>
- <view>
- <text class="title">{{item.title}}</text>
- <text class="title1">{{item.address}}</text>
- </view>
- <image src="{{item.select ? '/img/duigou.png' : ''}}" style="width:48rpx;height:48rpx;"></image>
- </view>
- </scroll-view>
- </view>
- <view class="bottom" bindtap="submit">
- <view>
- <text>提交申请</text>
- </view>
- </view>
- <map id="map" longitude='{{longitude}}' latitude='{{latitude}}' scale='16' show-location="true" bindregionchange="bindregionchange" style="height:{{mapHeight*2}}rpx" animation="{{animatMap}}">
- <cover-image src="/img/map.png" style="width:30rpx;height:54rpx;" class="coverImage"></cover-image>
- </map>
- <view class="circle" bindtap="posi" animation="{{animaticon}}" style="height:{{iconHeight}}%">
- <image src="{{img}}weapp/icon3.png" class="iconImg"></image>
- </view>
- </view>
|