myActive.wxml 1.2 KB

123456789101112131415161718192021
  1. <view wx:for="{{arr}}" wx:key="index" class="box">
  2. <view class="top">
  3. <image src="../../images/activephoto.png" style="width:80rpx;height:80rpx;"></image>
  4. <view class="text">
  5. <view class="title">{{item.title}}</view>
  6. <view class="remark">{{item.remark}}</view>
  7. </view>
  8. <view wx:if="{{item.activeStatus==0}}" class="btn btn1">未开始</view>
  9. <view wx:if="{{item.activeStatus==1}}" class="btn btn2" data-id='{{item.id}}' data-sign='{{item.isSign}}' bindtap="goActive">进行中</view>
  10. <view wx:if="{{item.activeStatus==2}}" class="btn btn3">已结束</view>
  11. </view>
  12. <image src="{{item.faceUrl}}" class="img2"></image>
  13. <view class="p1">
  14. <van-icon name="clock-o" color="#a267ff" size="35rpx"/><view style="margin-left:15rpx">活动时间:{{item.activeTime}}</view>
  15. </view>
  16. <view class="p1">
  17. <van-icon name="location-o" color="#a267ff" size="35rpx"/><view style="margin-left:15rpx">活动地点:{{item.address}}</view>
  18. </view>
  19. </view>
  20. <image wx:if='{{arr.length==0}}' src="../../images/empty.png" style="position:fixed;width:320rpx;height:320rpx;top:200rpx;left:215rpx"></image>
  21. <view wx:if='{{arr.length==0}}' style="position:fixed;width:750rpx;height:320rpx;top:550rpx;left:0rpx;text-align:center">您还没有可以参与的活动呦</view>