index.wxml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <view class="swiper-cont container-fill">
  2. <swiper class="imageContainer" bindchange="handleChange" previous-margin="50rpx" next-margin="50rpx" circular autoplay>
  3. <block wx:for="{{3}}" wx:key="index">
  4. <swiper-item class="item">
  5. <image class="itemImg {{currentIndex == index ? 'active': ''}}" src="../../images/lb.png"></image>
  6. </swiper-item>
  7. </block>
  8. </swiper>
  9. <image src="../../images/show.png" style="width:650rpx;margin-left:50rpx;height:200rpx"></image>
  10. <view style="display:flex;margin-left:30rpx;margin-top:30rpx;margin-bottom:30rpx"><view style='width:10rpx;height:45rpx;background-color:#986aff;margin-right:20rpx;border-radius:10rpx'></view>近期活动</view>
  11. <view wx:for="{{arr}}" wx:key="index" class="box" bindtap="goActive" data-id='{{item.id}}' data-openId='{{item.openId}}'>
  12. <view class="top">
  13. <image src="../../images/activephoto.png" style="width:80rpx;height:80rpx;"></image>
  14. <view class="text">
  15. <view class="title">{{item.title}}</view>
  16. <view class="remark">{{item.remark}}</view>
  17. </view>
  18. <view wx:if="{{item.openId==null}}" class="btn btn1">报名</view>
  19. <view wx:else class="btn btn2">已报名</view>
  20. </view>
  21. <image src="../../images/activeimg.png" class="img2"></image>
  22. <view class="p1">
  23. <van-icon name="clock-o" color="#a267ff" size="35rpx" />
  24. <view style="margin-left:15rpx">活动时间:{{item.activeTime}}</view>
  25. </view>
  26. <view class="p1">
  27. <van-icon name="location-o" color="#a267ff" size="35rpx" />
  28. <view style="margin-left:15rpx">活动地点:{{item.address}}</view>
  29. </view>
  30. </view>
  31. <view wx:for="{{arr1}}" wx:key="index" class="box" bindtap="goActive" data-id='{{item.id}}' data-openId='{{item.openId}}'>
  32. <view class="top">
  33. <image src="../../images/activephoto.png" style="width:80rpx;height:80rpx;"></image>
  34. <view class="text">
  35. <view class="title">{{item.title}}</view>
  36. <view class="remark">{{item.remark}}</view>
  37. </view>
  38. <view wx:if="{{item.openId==null}}" class="btn btn1">报名</view>
  39. <view wx:else class="btn btn2">已报名</view>
  40. </view>
  41. <image src="../../images/activeimg.png" class="img2"></image>
  42. <view class="p1">
  43. <van-icon name="clock-o" color="#a267ff" size="35rpx" />
  44. <view style="margin-left:15rpx">活动时间:{{item.activeTime}}</view>
  45. </view>
  46. <view class="p1">
  47. <van-icon name="location-o" color="#a267ff" size="35rpx" />
  48. <view style="margin-left:15rpx">活动地点:{{item.address}}</view>
  49. </view>
  50. </view>
  51. </view>