1234567891011121314151617181920212223242526 |
- <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}}" 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}}" style="background: #FA8C16;">
- {{item.tradefield}}
- </view>
- </view>
- <view class="type line-1">开始时间:{{item.begdate||'--'}}</view>
- <view class="type line-1">结束时间:{{item.enddate||'--'}}</view>
- </view>
- </navigator>
- <Yl_Empty wx:if="{{list.length === 0}}" />
|