shop_details.wxml 1.07 KB
<view class="container">
	<!-- 轮播图 -->
	<view class="swiper-container">
		<swiper
		 indicator-dots
		 autoplay
		 circular>
			<swiper-item><image class="img" src="https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2841289551,2117307057&fm=26&gp=0.jpg"></image></swiper-item>
			<swiper-item><image class="img" src="https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=1399951667,129331942&fm=26&gp=0.jpg"></image></swiper-item>
		</swiper>
	</view>
	
	<view class="shop-container">
		<!-- 地址 -->
		<view class="address-container section flex">
			<view class="left">
				<view>{{shop.pickup_name}}</view>
				<view class="address">{{shop.fulladdress}}</view>
			</view>
			<view class="right">
				<view class="btn btn-nav"><text class="iconfont icon-daohang"></text>导航</view>
				<view class="distance">999.0千米</view>
			</view>
		</view>
		
		<!-- 电话 -->
		<view class="section flex">
			<view>{{shop.pickup_phone}}</view>
			<view class="btn btn-phone" bindtap="onPhone"><text class="iconfont icon-phone"></text>电话</view>
		</view>
	</view>
</view>