123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <cu-custom bgColor="bg-lw-header" isCustom="{{true}}"><view slot="content">活动详情</view></cu-custom>
- <view class="title padding-lr bg-white">{{info.title}}</view>
- <!-- 作者和时间 -->
- <view class="cu-list menu padding-lr bg-white">
- <view class="cu-item" style="padding:0;">
- <view class="content padding-tb-sm" style="line-height:1em;">
- <view class="text-sm">作者:{{info.author}}</view>
- <view class="text-gray text-xs">{{info.create_time}}</view>
- </view>
- <view class="action">
- <view class="cu-tag bg-red radius" wx:if="{{info.review}}" bindtap="toReview">活动回顾</view>
- <view class="cu-tag bg-blue radius {{info.status_text == '已结束' ? 'light' : ''}}" style="color:white;">{{info.status_text}}</view>
- </view>
- </view>
- </view>
- <!-- 活动时间 -->
- <!-- <view class="cu-bar bg-white margin-top" style="min-height:60rpx;">
- <view class="action">
- <text class="cuIcon-title text-red"></text>
- <text class="text-black text-df">活动时间</text>
- </view>
- </view> -->
- <view class="cu-list menu bg-white" style="margin-top:0;">
- <view class="cu-item" style="min-height:0;">
- <view class="content" style="line-height:1.2em;">
- <view class="text-sm">开始时间:{{info.start_time}}</view>
- <view class="text-sm">结束时间:{{info.end_time}}</view>
- </view>
- </view>
- </view>
- <!-- 活动地点 -->
- <!-- <view class="cu-bar bg-white margin-top" style="min-height:60rpx;">
- <view class="action">
- <text class="cuIcon-title text-red"></text>
- <text class="text-black text-df">活动地点</text>
- </view>
- </view> -->
- <view class="cu-list menu bg-white" style="margin-top:0;">
- <view class="cu-item" style="min-height:0;">
- <view class="content" style="line-height: normal;">
- <text class="text-sm">活动地点:{{info.address}}</text>
- </view>
- </view>
- </view>
- <!-- 内容 -->
- <view class="padding bg-white margin-top">
- <rich-text nodes="{{content}}"></rich-text>
- </view>
- <!-- 附件 -->
- <view wx:if="{{info.options.length > 0}}">
- <view class="cu-bar bg-white margin-top" style="min-height:60rpx;">
- <view class="action">
- <text class="cuIcon-title text-red"></text>
- <text class="text-black text-df">附件下载</text>
- </view>
- </view>
- <view class="cu-list menu bg-white sm-border">
- <view class="cu-item" style="min-height:0;" wx:for="{{info.options}}" wx:key="key">
- <view class="content">
- <text class="text-sm">{{item.name}}</text>
- <text class="text-sm text-blue margin-left" data-url="{{item.url}}" bindtap="copyUrl">复制链接</text>
- </view>
- </view>
- </view>
- </view>
- <view style="height:80rpx;"></view>
- <!-- 报名 -->
- <view wx:if="{{info.status_text != '已结束'}}" class="cu-btn lw-red lg" bindtap="joinActivity" style="width:100%;position:fixed;bottom:0;">报名</view>
|