wpfw_ewei_wxapp/groups/jointeam/index.wxml
2023-02-26 08:10:18 +08:00

35 lines
1.6 KiB
Plaintext

<view class="join">
<view class="goodsinfo flex">
<image src="{{data.thumb}}"></image>
<view class="inner flex1">
<view class="title">{{data.title}}</view>
<view>
<text class="person">{{data.is_ladder==1?'阶梯团':data.groupnum+'人团'}}</text>
</view>
<view class="price">¥{{data.groupsprice}}/{{data.goodsnum}}件 <text class="fr">已有{{data.teamnum}}人参团</text>
</view>
</view>
</view>
<view class="process">
<text class="icox icox-1"></text>下单开团/参团 <text class="line">-----------</text>
<text class="icox icox-2"></text>邀请好友参团 <text class="line">-----------</text>
<text class="icox icox-3"></text>人满拼团成功
</view>
<view class="operation" wx:if="{{other.length>0}}">
<view class="text">以下小伙伴正在发起拼团,您可以直接参加</view>
<view class="groups">
<view class="groups-item flex" wx:if="{{item.status!='hide'}}" wx:for="{{other}}">
<image src="{{item.avatar}}"></image>
<view class="flex1">
<view>{{item.nickname}}</view>
<view class="des">还差{{item.num}}人成团,剩余{{item.hour}}小时{{item.minite}}分钟{{item.second}}秒</view>
</view>
<navigator bindtap="do_" class="joinbtn" data-teamid="{{item.teamid}}">我要参团</navigator>
</view>
</view>
</view>
<view class="empty" wx:if="{{other.length==0}}">
暂无相关团购
</view>
</view>