12345678910111213141516171819202122232425 |
- <view style="background: #f5f5f5; padding: 20rpx 0;">
- <view class="goodslist_boxs">
- <view class="top_boxs">
- <view bindtap="onCancel">取消</view>
- <view bindtap="onConfirm">确认</view>
- </view>
- <view class="search-bar">
- <input type="text" placeholder="搜索地址" bindinput="onSearchInput" />
- </view>
- <!-- <map id="myMap" style="width: 100%; height: 300px; margin-top: 30rpx;" latitude="{{latitude}}" longitude="{{longitude}}" scale="15" bindtap="onMapTap"></map> -->
-
- <map id="qqMap" style="width: 100%; height: 300px; margin-top: 30rpx;" latitude="{{latitude}}" longitude="{{longitude}}" show-location></map>
- <view class="address-list">
- <block wx:for="{{nearbyAddresses}}" wx:key="index">
- <view class="address-item" bindtap="selectAddress" data-index="{{index}}">
- <view>
- <view>{{item.name}}</view>
- <view style="color: #9f9f9f;margin-top: 14rpx;">{{item.address}}</view>
- </view>
- <checkbox checked="{{item.checked}}"></checkbox>
- </view>
- </block>
- </view>
- </view>
- </view>
|