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