index.wxml 483 B

123456789
  1. <l-container>
  2. <view slot="container" class="globstyle index">
  3. <l-noticebar />
  4. <van-card custom-class="card" lazy-load='true' bindtap="ShopSuccess" data-id="{{item.id}}" desc-class="card-desc"
  5. wx:for="{{shoplist}}" wx:key="index" tag="{{item.tag}}" thumb="{{item.imgurl}}" title="{{item.title}}"
  6. desc="{{item.desc}}" price="{{item.price}}" num="{{item.num}}" />
  7. <van-empty wx:if="{{shoplist.length==0}}" description="暂无商品" />
  8. </view>
  9. </l-container>