detail.wxml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <cu-custom bgColor="bg-lw-header" isCustom="{{true}}"><view slot="content">活动详情</view></cu-custom>
  2. <view class="title padding-lr bg-white">{{info.title}}</view>
  3. <!-- 作者和时间 -->
  4. <view class="cu-list menu padding-lr bg-white">
  5. <view class="cu-item" style="padding:0;">
  6. <view class="content padding-tb-sm" style="line-height:1em;">
  7. <view class="text-sm">作者:{{info.author}}</view>
  8. <view class="text-gray text-xs">{{info.create_time}}</view>
  9. </view>
  10. <view class="action">
  11. <view class="cu-tag bg-red radius" wx:if="{{info.review}}" bindtap="toReview">活动回顾</view>
  12. <view class="cu-tag bg-blue radius {{info.status_text == '已结束' ? 'light' : ''}}" style="color:white;">{{info.status_text}}</view>
  13. </view>
  14. </view>
  15. </view>
  16. <!-- 活动时间 -->
  17. <!-- <view class="cu-bar bg-white margin-top" style="min-height:60rpx;">
  18. <view class="action">
  19. <text class="cuIcon-title text-red"></text>
  20. <text class="text-black text-df">活动时间</text>
  21. </view>
  22. </view> -->
  23. <view class="cu-list menu bg-white" style="margin-top:0;">
  24. <view class="cu-item" style="min-height:0;">
  25. <view class="content" style="line-height:1.2em;">
  26. <view class="text-sm">开始时间:{{info.start_time}}</view>
  27. <view class="text-sm">结束时间:{{info.end_time}}</view>
  28. </view>
  29. </view>
  30. </view>
  31. <!-- 活动地点 -->
  32. <!-- <view class="cu-bar bg-white margin-top" style="min-height:60rpx;">
  33. <view class="action">
  34. <text class="cuIcon-title text-red"></text>
  35. <text class="text-black text-df">活动地点</text>
  36. </view>
  37. </view> -->
  38. <view class="cu-list menu bg-white" style="margin-top:0;">
  39. <view class="cu-item" style="min-height:0;">
  40. <view class="content" style="line-height: normal;">
  41. <text class="text-sm">活动地点:{{info.address}}</text>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- 内容 -->
  46. <view class="padding bg-white margin-top">
  47. <rich-text nodes="{{content}}"></rich-text>
  48. </view>
  49. <!-- 附件 -->
  50. <view wx:if="{{info.options.length > 0}}">
  51. <view class="cu-bar bg-white margin-top" style="min-height:60rpx;">
  52. <view class="action">
  53. <text class="cuIcon-title text-red"></text>
  54. <text class="text-black text-df">附件下载</text>
  55. </view>
  56. </view>
  57. <view class="cu-list menu bg-white sm-border">
  58. <view class="cu-item" style="min-height:0;" wx:for="{{info.options}}" wx:key="key">
  59. <view class="content">
  60. <text class="text-sm">{{item.name}}</text>
  61. <text class="text-sm text-blue margin-left" data-url="{{item.url}}" bindtap="copyUrl">复制链接</text>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <view style="height:80rpx;"></view>
  67. <!-- 报名 -->
  68. <view wx:if="{{info.status_text != '已结束'}}" class="cu-btn lw-red lg" bindtap="joinActivity" style="width:100%;position:fixed;bottom:0;">报名</view>