1234567891011121314151617181920212223242526272829303132 |
- <view class="search">
- <wux-search-bar clear bind:confirm="onConfirm" bind:change="onChange" bind:clear="onClear" value="{{ value }}" placeholder="请输出门店名称、地址进行搜索" />
- </view>
- <view class="position">
- <view class="address-text flex-align-center">
- <image src="/images/icon_02.png"></image>
- <text class="ellipsis" style="font-size: 24rpx;">{{defaultStore.belong_region}}</text>
- </view>
- <view class="map-box flex flex-align-center">
- <view class="text flex-column flex1 ellipsis">
- <text style="color: #FA7D22;">当前其他位置></text>
- <text class="ellipsis">当前选择门店地址:{{defaultStore.belong_region}}</text>
- </view>
- <view class="btn flex-center" bindtap="onOpenLocation">地图模式</view>
- </view>
- <view class="box" style="padding: 20rpx 0;">
- <!-- <view class="flex flex-justify-space-between" style="padding: 0 30rpx;margin-bottom: 20rpx;">
- <view class="btn-switch flex-center active">历史服务点</view>
- <view class="btn-switch flex-center">我附近的点</view>
- </view> -->
- <view class="flex-center">
- <text style="color:#666666;">请选择一个最方便的门店(建议距离最近)</text>
- </view>
- </view>
- </view>
- <view class="list">
- <view class="item flex-column" wx:for="{{list}}" wx:key="index" bindtap="onChangeStore" data-item="{{item}}">
- <text>{{item.store_name}}</text>
- <text>{{item.belong_region}}</text>
- </view>
- </view>
- <view class="btm-text">--更多分店敬请期待--</view>
|