You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
4.4 KiB
91 lines
4.4 KiB
<import src="../../wxParse/wxParse.wxml" />
|
|
<view class="content">
|
|
<scroll-view scroll-x="{{false}}" scroll-y="{{true}}">
|
|
<image src="{{activityDetail.showUrl}}" class="slide-image" mode='widthFix' />
|
|
<view class='activity_info'>
|
|
<view class='row0'>
|
|
<text class='title'>{{activityDetail.activityName}}</text>
|
|
<view class='countdown' style='display: {{groupNo == "" ? "block" : "none"}};'>
|
|
<text >{{activityDetail.countdownDesc}}</text>
|
|
<view >
|
|
<text class="sec">{{countDownDay}}</text>天
|
|
<text class="sec">{{countDownHour}}</text>时
|
|
<text class="sec">{{countDownMinute}}</text>分
|
|
<text class="sec">{{countDownSecond}}</text>秒
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<text class="num">{{activityDetail.limitNum}}人团</text>
|
|
<text class="limit_type">{{activityDetail.limitTypeDesc}}</text>
|
|
</view>
|
|
<view class="row" style='padding-top: 10rpx;'>
|
|
<text class="sucess_tip">拼团成功人均获得一张</text>
|
|
<text class="sucess_card">{{activityDetail.goodsName}}</text>
|
|
</view>
|
|
<view class="price_row">
|
|
<view style='float: left;'>
|
|
<text class="common666">原价:</text>
|
|
<text class="common666del">{{activityDetail.originalPrice / 100}}元</text>
|
|
</view>
|
|
<view style='float: left;'>
|
|
<text class="common666">团长价:</text>
|
|
<text class="commonRed">{{activityDetail.originatorPrice / 100}}</text>
|
|
</view>
|
|
<view style='float: left;'>
|
|
<text class="common666">团员价:</text>
|
|
<text class="commonRed">{{activityDetail.participantPrice / 100}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='grounp_info' style='display: {{grounpInfo}};'>
|
|
<view class='status'>
|
|
<text class="tag" style='border-color: {{tagColor}};color: {{tagColor}};'>{{activityDetail.statusDesc}}</text>
|
|
<view class='remark' style='display: {{remark}};'>还差
|
|
<text class='num'>{{activityDetail.limitNum - memberList.length}}</text>人拼团成功
|
|
</view>
|
|
<view class="countDownTimeView" style='display: {{remark}};'>
|
|
<text class="countDownTimeText">{{countDownDay}}天</text>
|
|
<text class="countDownTimeText">{{countDownHour}}时</text>
|
|
<text class="countDownTimeText">{{countDownMinute}}分</text>
|
|
<text class="countDownTimeText">{{countDownSecond}}秒</text>
|
|
</view>
|
|
<view class='remarkText' style='display: {{remark == "none" ? "block" : "none"}};'>
|
|
{{remarkText}}
|
|
</view>
|
|
</view>
|
|
<view class='list'>
|
|
<scroll-view scroll-x="{{true}}" scroll-y="{{false}}" class='list'>
|
|
<view class='view'>
|
|
<view wx:for-items="{{memberList}}" class="memberList" wx:key="userId">
|
|
<image class='headImage' src='{{item.headUrl}}'></image>
|
|
<text class="{{item.memberType == 0 ? 'markBlock' : 'markNone'}}">团长</text>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|
|
<view class='grounp_info2' style='display: {{grounpInfo2}};'>
|
|
<view class='row1'>
|
|
<image src='/images/空.png' class='image'></image>
|
|
<text class='text'>你来晚了</text>
|
|
</view>
|
|
<view class='row2'>{{activityDetail.statusDesc}}</view>
|
|
</view>
|
|
<image src="{{activityDetail.ruleUrl}}" bindload="ruleImageLoad" style="width:100%;margin: 5rpx auto;height:{{rule_image_height}}px"></image>
|
|
<view class="global_focus intro-box" style='margin: 5rpx auto;'>
|
|
<template is="wxParse" data="{{wxParseData:activityContent.nodes}}" />
|
|
</view>
|
|
</scroll-view>
|
|
<view class='bottom_view'>
|
|
<!-- 我要开团按钮 -->
|
|
<view class='one_content' id='one_button' style='display: {{one_content}};background-color:{{bottomBGColor}};' bindtap='groupTap'>{{buttomText}}</view>
|
|
<view class='two_content' id='two_content' style='display: {{two_content}};'>
|
|
<!-- 参与拼团的成员---左边价格,右边参与拼团 -->
|
|
<view class='left'>¥{{activityDetail.participantPrice / 100}}</view>
|
|
<view class='right' bindtap='groupTap'>{{buttomText}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!--底部弹出框-->
|
|
<zan-actionsheet show="{{ show }}" actions="{{ actions }}" cancel-with-mask="{{ cancelWithMask }}" bind:cancel="closeActionSheet" bind:actionclick="clickAction" mask-class="tiny" />
|