38 lines
1.9 KiB
Plaintext
38 lines
1.9 KiB
Plaintext
<!-- 头部导航 -->
|
|
<nav-bar isBack="{{isBack}}" pageTitle="{{pageTitle}}" system="{{system}}"></nav-bar>
|
|
<!-- pages/nearbyStore/nearbyStore.wxml -->
|
|
<view class="nearbyStore">
|
|
<view class="map" style="top:{{system.statusHeight+system.titleHeight+'px'}}">
|
|
<map id="map" longitude="{{ longitude }}" latitude="{{ latitude }}" scale="14" markers="{{markers}}" show-compass show-location style="width: 100%; height: 490rpx;"></map>
|
|
</view>
|
|
<view class="nav_title">合肥伊莎洗衣洗衣<span>{{addList.length}}</span>家门店导航</view>
|
|
<view class="shopList pd30">
|
|
<view class="shop_row pd30 mb20" wx:for="{{reallyList}}" wx:key="index">
|
|
<view class="title">
|
|
<view class="title1 fl">
|
|
<image src="/static/img/icon/dasd1a65d1as1da6_03.png" />
|
|
</view>
|
|
<view class="title2 fl">{{item.name}}</view>
|
|
<view class="title3 fr c_red">{{item.distance}}</view>
|
|
</view>
|
|
<view class="shop_info">
|
|
<view class="shop_infol">
|
|
<view class="shop_p">电话 {{item.telnum}}</view>
|
|
<view class="shop_p">地址 {{item.address}}</view>
|
|
</view>
|
|
<view class="shop_infor">
|
|
<view class="shop_img">
|
|
<view class="shimg flex-con3" data-item="{{item}}" bind:tap="makePhoneCall">
|
|
<image src="/static/img/icon/greger6541g61gw.png" />
|
|
</view>
|
|
<view class="shimg flex-con3" data-item="{{item}}" bind:tap="intoMap">
|
|
<image src="/static/img/icon/asfasf0230.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- toasta提示 -->
|
|
<i-toast id="toast" /> |