You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
752 B

5 years ago
<!--pages/pbService/gym/info/index.wxml-->
<wxs src="../../../../utils/filter.wxs" module="tool" />
<title title="场馆详情"></title>
<swiper class="swiper" indicator-dots="{{true}}" wx:if="{{info}}"
autoplay="{{true}}" interval="{{2000}}" duration="{{300}}">
<block wx:for="{{picList}}" wx:key="*this">
<swiper-item>
<image src="{{item.pic_address}}" mode="aspectFill"></image>
</swiper-item>
</block>
</swiper>
<view class="info" wx:if="{{info}}">
<view class="title">{{info.name}}</view>
<view class="info-tip"><text>开放时间:</text>{{info.open_time}}</view>
<view class="info-tip"><text>联系方式:</text>{{info.telephone}}</view>
<view class="info-tip"><text>地址:</text>{{info.address}}</view>
</view>