Files
cardtest/pages/storeDetails/storeDetails.wxml
张慢慢 a7995d90bc [更新]
2021-05-24 13:56:00 +08:00

37 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 门店详情 -->
<view class="detailsImg">
<image src="{{storeinfo.cover}}" mode="aspectFill"></image>
</view>
<view class="detailsCont">
<view class="detailsName">
{{storeinfo.title}}
</view>
<view class="detailsLabel">
<view class="detailsLabel-left">
<image src="/static/icon/site_icon.png"></image>
<view class="detailsLabel-name">
<text>{{storeinfo.address}}</text>
距您 {{distance}}
</view>
</view>
<image class="detailsLabel-tel" src="/static/icon/tel.png" bindtap="tel"></image>
</view>
<view class="detailsLabel">
<view class="detailsLabel-left">
<image src="/static/icon/time_icon.png"></image>
<view class="detailsLabel-name">
<text>营业时间</text>
<block wx:if="{{storeinfo.open_time != null}}">{{storeinfo.open_time}}</block>
<block wx:else>0000</block>
</view>
</view>
<!-- <image class="detailsLabel-add" src="/static/icon/arrow_left.png"></image> -->
</view>
</view>
<!-- 按钮 -->
<view class="detailsBtn">
<view class="detailsBtn-cont" bindtap="siteMap">
去导航
</view>
</view>