1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!--pages/groupPage/collage-details/collage-details.wxml-->
- <view class="collage-details">
- <view class="step">
- <image src="../../../static/groupImg/step.png"></image>
- <view class="txt">
- <text>1.支付成功</text>
- <text>2.邀请朋友参加</text>
- <text>3.去朗读</text>
- </view>
- </view>
- <view class="details-head">
- <view class="headImg">
- <block wx:for="{{joinUserList}}" wx:key="{{index}}">
- <view class="headImg-item {{organizerUid == item.uid ? 'bg-boder' : ''}}">
- <image wx:if="{{organizerUid == item.uid}}" class="tuanzhangIcon" src="../../../static/groupImg/tuanzhangIcon.png"></image>
- <image src="{{item.avatar}}"></image>
- </view>
- </block>
- <block wx:for="{{surplusList}}" wx:key="{{index}}">
- <view class="headImg-item">
- <image src="../../../static/groupImg/no_head.png"></image>
- </view>
- </block>
- </view>
- <view class="shengyu">
- <view class="shengyu-num" hidden="{{surplusNum == '0'}}">还需邀请<text>{{surplusNum}}</text>名好友</view>
- <view class="shengyu-num" hidden="{{surplusNum == '0'}}">即可获得一年级语文同步辅导(上学期)</view>
- <view class="shengyu-num" hidden="{{surplusNum != '0'}}">拼团成功!快去朗读吧</view>
- <view class="shengyu-time" >
- 剩余时间:
- <view class="time">
- <image src="../../../static/groupImg/Rectangle_31.png"></image>
- <text>{{timeList[0]}}</text>
- </view>
- 天
- <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
- <view class="time">
- <image src="../../../static/groupImg/Rectangle_31.png"></image>
- <text>{{item}}</text>
- </view>
- </block>
- 时
- <block wx:for="{{timeList[2]}}" wx:key="{{index}}">
- <view class="time">
- <image src="../../../static/groupImg/Rectangle_31.png"></image>
- <text>{{item}}</text>
- </view>
- </block>
- 分
- </view>
- </view>
- <view class="invitation-btn" bindtap="openShare">
- <image src="../../../static/groupImg/Invitation.png"></image>
- <text>{{read ? '开始你的表演' : '邀请朋友参加'}}</text>
- </view>
- </view>
- <view class="explain">
- <text>拼团规则</text>
- <view>转发给自己的朋友们,分享好课, 追随您一起学习进步 您的魅力不是吹的</view>
- <view>在限定时间内成功拼团,您将得到xx元的奖励金</view>
- <view>如果拼团失败 </view>
- <view>您预付的课程费将在48小时内退回您的账户</view>
- </view>
- </view>
- <canvas canvas-id="myCanvas" style="width:370px; height: 507px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
- <shareDialog id="share-dialog" shareType='group' shareId="{{orderId}}"/>
- <popup
- typeOf="sendSuccess"
- title="报告团长"
- headTextTwo="您发起的团购已经成立,订单号:12345"
- content="{{content}}"
- ></popup>
|