12345678910111213141516171819202122232425262728293031 |
- <navigator class="product" url="/packageA/activity/detail?id={{item.sa_promotionid}}" wx:for="{{list}}" wx:key="sa_promotionid">
- <view class="image-box">
- <van-image width="100%" wx:if="{{item.attinfos[0]}}" height="100%" fit="cover" src="{{item.attinfos[0].subfiles[0].url||item.attinfos[0].url}}" use-loading-slot use-error-slot lazy-load>
- <van-loading slot="loading" type="spinner" size="20" vertical />
- <text slot="error">加载失败</text>
- </van-image>
- <text class="text" wx:else>暂无图片</text>
- </view>
- <view class="right-box">
- <view class="title line-1">{{item.promname||'--'}}</view>
- <view class="tags">
- <view wx:if="{{item.type}}" style="background: #FA8C16;">
- {{item.type}}
- </view>
- <view wx:if="{{item.brandname}}" style="background: #FA8C16;">
- {{item.brandname}}
- </view>
- <view wx:if="{{item.tradefield.length}}" style="background: #FA8C16;">
- {{item.tradefield}}
- </view>
- </view>
- <view class="type line-1">开始时间:{{item.begdate||'--'}}</view>
- <view class="type line-1">结束时间:{{item.enddate||'--'}}</view>
- <view wx:if="{{item.type=='返利促销'}}" class="type line-1">活动可用余额:{{item.canuseamount||'0'}}</view>
- <view wx:if="{{item.surplus}}" class="type line-1" style="display: flex;align-items: center;">
- 距结束:
- <van-count-down time="{{ item.surplus }}" format="DD 天 HH 时 mm 分 ss 秒" />
- </view>
- </view>
- </navigator>
- <Yl_Empty wx:if="{{list.length === 0}}" />
|