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.
26 lines
1.4 KiB
26 lines
1.4 KiB
|
5 years ago
|
<!--pages/info/museumInfo/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="{{info.listimg}}" wx:key="*this">
|
||
|
|
<swiper-item>
|
||
|
|
<image src="{{item}}" mode="aspectFill"></image>
|
||
|
|
</swiper-item>
|
||
|
|
</block>
|
||
|
|
</swiper>
|
||
|
|
<view class="info" wx:if="{{info}}">
|
||
|
|
<view class="title">{{info.title}}</view>
|
||
|
|
<view class="location"><text class="iconfont icon-location"></text>{{info.address}}</view>
|
||
|
|
<view class="location" style="margin-bottom:0"><text class="iconfont icon-dianhua2"></text>{{info.tel}}</view>
|
||
|
|
</view>
|
||
|
|
<view class="detail-title">预订须知</view>
|
||
|
|
<rich-text wx:if="{{info}}" class="detail" nodes="{{tool.formateRichText(info.book_info)}}"></rich-text>
|
||
|
|
<view class="detail-title">场馆介绍</view>
|
||
|
|
<rich-text wx:if="{{info}}" class="detail" nodes="{{tool.formateRichText(info.content)}}"></rich-text>
|
||
|
|
<!-- <view class="detail" wx:if="{{info}}">{{info.open_time}}</view> -->
|
||
|
|
<view style="height:104rpx" wx:if="{{info.product_venue && info.product_venue.sku && info.product_venue.sku.length>0}}"></view>
|
||
|
|
<view class="fixed-btn" wx:if="{{info.product_venue && info.product_venue.sku && info.product_venue.sku.length>0}}">
|
||
|
|
<view bindtap="order" class="btn">参观预约</view>
|
||
|
|
</view>
|