onSiteActivity.wxml 1.6 KB

1234567891011121314151617181920212223242526272829
  1. <view class="container">
  2. <view class="title">本场编号为{{myNum}}</view>
  3. <view class="subtitle">请给你喜欢的嘉宾点击心动,心动上限为{{planHeart}}个</view>
  4. <scroll-view scroll-x="true" enable-flex="true" style="margin-top:40rpx">
  5. <view class="heartbox">
  6. <view wx:for="{{heartTime}}" wx:key="index" style="z-index:10;">
  7. <image src="../../images/heart.png" style="width:50rpx;height:50rpx"></image>
  8. </view>
  9. <view wx:for="{{planHeart-heartTime}}" wx:key="index" style="z-index:10;">
  10. <image src="../../images/gray.png" style="width:35rpx;height:35rpx"></image>
  11. </view>
  12. <view class="line"></view>
  13. </view>
  14. </scroll-view>
  15. <view class="num">
  16. <view class='allnum'>嘉宾: {{member.length}}名</view>
  17. <button id="tousu" session-from="nickName={{userInfo.nickName}}|avatarUrl={{userInfo.avatarUrl}}" open-type="contact">投诉反馈</button>
  18. <!-- <view class="tousu" bindtap="goTousu">投诉反馈</view> -->
  19. </view>
  20. </view>
  21. <view class="photobox">
  22. <view wx:for="{{member}}" wx:key="index" data-index="{{index}}" data-openId='{{item.openId}}' bindtap="love" style="text-align:center;width: 140rpx;position:relative">
  23. <image src="{{item.memberAvatar}}" style="width:110rpx;height:110rpx;border-radius:50%;margin-top:20rpx" mode="aspectFit"></image>
  24. <view style="color:#4d4d4d;font-size:28rpx;margin-top:5rpx">{{item.activeNumber}}</view>
  25. <view style="color:#4d4d4d;font-size:28rpx;padding-bottom:35rpx">{{item.memberName}}</view>
  26. <view class="grayCircle"></view>
  27. <image src="../../images/love.png" class="loveCircle" wx:if="{{item.hearted==0}}"></image>
  28. </view>
  29. </view>