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.

45 lines
2.4 KiB

5 years ago
<!--pages/info/activityInfo/index.wxml-->
<wxs src="../../../utils/filter.wxs" module="tool" />
<title title="活动"></title>
<!-- <swiper class="swiper" indicator-dots="{{true}}"
autoplay="{{true}}" interval="{{2000}}" duration="{{300}}">
<block wx:for="{{listimgs}}" wx:key="*this">
<swiper-item>
<image src="{{item}}" mode="aspectFill"></image>
</swiper-item>
</block>
</swiper> -->
<view wx:if="{{info}}">
<image src="{{info.post_url}}" mode="widthFix" class="swiper"></image>
<view class="top-box">
<view class="top-box-title">{{info.name}}</view>
<view class="top-tip-box" wx:if="{{info.begin_date || info.end_date}}">
<image src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/activity/time.png" mode="widthFix"></image>
<text>活动时间:{{info.begin_date}} ~ {{info.end_date}}</text>
</view>
<view class="top-tip-box" wx:if="{{info.detail_address}}">
<image src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/activity/location.png" mode="widthFix"></image>
<text>活动地点:{{info.detail_address}}</text>
</view>
</view>
<!-- <view class="box-title">活动场次</view>
<view style="height:30rpx"></view>
<view class="time" wx:for="{{10}}">活动场次名称 2020/06/13 9:00:00至2020/06/13 12:00:00</view> -->
<view class="box-title">活动时间</view>
<view class="box-content">
<!-- 2020/12/20 14:00-16:30 -->
{{info.begin_date}} ~ {{info.end_date}}
</view>
<view class="box-title">活动详情</view>
<!-- <view class="box-content">展览预约开放期间需遵守如下规定:
1、文化馆展厅预约开放时间为周一至周五9:30-11:30。周六、周日暂不开放。(上午10:30后停止入场)
2、疫情防控期间暂时关闭文化馆南门、西门及文化馆与图书馆连廊通道,仅开放文化馆北门为出入口。
</view> -->
<rich-text class="box-content" nodes="{{tool.formateRichText(info.intro)}}"></rich-text>
<!-- <view class="box-tip" wx:if="{{info && info.is_bind_our_sku==0}}">* 本活动无需在线预约,可直接前往。</view> -->
</view>
<view style="height:124rpx" wx:if="{{info && info.is_bind_our_sku!=0 && info.sku_id}}"></view>
<view class="bottom-fixed" wx:if="{{info && info.is_bind_our_sku!=0 && info.sku_id}}">
<view class="bottom-btn" bindtap="order" wx:if="{{info.is_act_end==0}}">预约活动</view>
<view class="bottom-btn disable" wx:else>活动已过期</view>
</view>