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.
 

32 lines
1.5 KiB

<!--pages/info/showInfo/index.wxml-->
<wxs src="../../../utils/filter.wxs" module="tool" />
<title title="产品详情"></title>
<view wx:if="{{info}}">
<swiper class="swiper" indicator-dots="{{true}}"
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="top-box">
<view class="title">{{info.title}}</view>
<view class="tags">
<view class="tag" wx:for="{{info.display_tags}}">{{item}}</view>
</view>
<view class="time">演出时间:<text wx:for="{{info.sku[0].sku_model.next_show_date}}">{{item}}</text></view>
<view class="show-location">{{info.scene_name}}</view>
<view class="show-address"><text class="iconfont icon-location"></text>{{info.scene_address}}</view>
</view>
</view>
<view class="all-title">演出详情</view>
<rich-text wx:if="{{info}}" class="detail" nodes="{{tool.formateRichText(info.content)}}"></rich-text>
<view class="all-title">预定须知</view>
<!-- <rich-text class="detail"></rich-text> -->
<rich-text wx:if="{{info}}" class="detail" nodes="{{tool.formateRichText(info.book_info)}}"></rich-text>
<view style="height:120rpx"></view>
<view class="fixed-bottom">
<view class="btn" bindtap="order" wx:if="{{info && info.flag==1}}">立即预约</view>
<view class="btn disable" wx:else>该商品已下架</view>
</view>