group_list.wxml 2.36 KB
<view class="list">
	<block wx:for="{{list.pageData}}">
		<view class="list-item" bindtap="goto" data-url="/pages/goods/goodsInfo/goodsInfo?goods_id={{item.goods_id}}&prom_id={{item.id}}&prom_type=2">
			<view class="img-container">
				<image class="img-block" src="{{imghost + item.original_img}}" data-val="{{item.original_img}}"
					   data-errorimg="list.pageData[{{index}}].original_img" binderror="bind_bnerr2" lazy-load="true"></image>
			</view>
			<view class="mgl20 flex fdc f1 jc_sb">
				<view>
					<view class="fs30">{{item.title}}</view>
					<view class="flex ai_c">

						<view class="fs26 tag" wx:if="{{type == 1}}">{{item.rebate}}折</view>
						<view class="fs26 tag" style="color:#fff;background:#059de5;" wx:else>{{item.rebate}}折</view>

						<view class="rmb c-red fs30" wx:if="{{type == 1}}">{{item.price}}</view>
						<view class="rmb c-red fs30"  style="color:#059de5;" wx:else>{{item.price}}</view>

						<view class="rmb del fs24 c-7b pdl10">{{item.market_price}}</view>
					</view>
				</view>
				<view class="flex jc_sb ai-center c-7b">
					<view class="fs24">
						<view>已售{{item.buy_num+item.virtual_num}}件</view>
						<view class=""><text class="iconfont icon-shizhong fs24"></text>{{goodlist[index].djs.day}}天{{goodlist[index].djs.hou}}时{{goodlist[index].djs.min}}分{{goodlist[index].djs.sec}}秒</view>
					</view>
					

					<view class="btn" wx:if="{{type == 1}}">去团购</view>
					<view class="btn" style="background: #059de5;color:#fff;" wx:else>即将开始</view>
					

				</view>
			</view>
		</view>

	</block>
	<view style="height:60rpx"></view>
</view>

<view class="no-more" hidden="{{!noMore}}" wx:if="{{list.pageData.length !== 0}}">—— 已经到底啦 ——</view>
<nodata nodataContainer="t-c" wx:if="{{list.pageData.length == 0}}"></nodata>



<view class="kill-time xc-seckill-bottom">
	<view class="theader" >
		<view bindtap='tip' data-ty="1" class="xc-border-right flex-center timeac left {{type==1?'active':''}}">
		<image class="xc-bottom" src="{{url}}{{type==1?'/miniapp/images/fire-red.png':'/miniapp/images/fire-black.png'}}"></image>
		火热进行中</view>
		<view bindtap='tip' data-ty="0"  class=" flex-center timeac right {{type==0?'active':''}}">
		<image class="xc-bottom" src="{{url}}{{type==0?'/miniapp/images/clock-rad.png':'/miniapp/images/clock-black.png'}}"></image>
		即将开始</view>
	</view>
</view>