shouye.wxml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!--pages/shouye.wxml-->
  2. <!-- <l-search-bar l-container-class="aa" bg-color="#e5e7df" placeholder="搜索" show-cancel="{{false}}" bind:linfocus="search"/> -->
  3. <l-search-bar l-container-class="aa" bg-color="#e5e7df" placeholder="搜索" show-cancel="{{false}}" bind:linconfirm="search"/>
  4. <l-tabs l-class-header="l-class-header" l-class-active="l-class-active" has-line="false" placement="top" scrollable equal-width="{{false}}" bind:linchange="keyData">
  5. <l-tabpanel has-line="false" wx:for="{{scrollAbleTabs}}" tab="{{item.tab}}" key="{{item.key}}" slot="{{item.key}}" wx:key="key" bind:linchange="keyData">
  6. <!-- <view class="tab-content">{{item.tab}}</view> -->
  7. </l-tabpanel>
  8. </l-tabs>
  9. <view wx:for="{{goodsList}}" wx:key="msg">
  10. <l-card type="primary" l-img-class="right-card" position="left" image="{{item.goods_image_url}}"
  11. bindtap="goodsDetail" data-sign="{{item.goods_sign}}" data-searchId="{{item.search_id}}" full="true" >
  12. <view class="super-long-test">
  13. <image class="empty-icon" src="/pages/image/dd.png" ></image>
  14. {{item.goods_name}}
  15. </view>
  16. <view class="containertag">
  17. <l-tag plain="{{true}}" font-color="#d81e06" shape="circle" size="medium" l-class="tag" class="describe" >{{item.coupon_discount/100}}元券</l-tag>
  18. <!-- <l-tag plain="{{true}}" font-color="#d81e06" shape="circle" size="medium" l-class="tag" class="fanli">返利{{item.promotion_rate/100}}</l-tag>
  19. -->
  20. </view>
  21. <view class="price-v">
  22. <text class="price">劵后¥{{(item.min_group_price-item.coupon_discount)/100}}</text> <text class="yprice">原价{{item.min_group_price/100}}</text>
  23. </view>
  24. <text class="contentcard">
  25. 销量:{{item.sales_tip}}
  26. </text>
  27. <text class="contentcard">店铺:{{item.mall_name}}</text>
  28. </l-card>
  29. </view>
  30. <l-loadmore show="{{true}}" end-text="我是有底线的~" type="{{lType}}">
  31. <!-- <view slot="content">
  32. 我是有底线的~
  33. </view> -->
  34. </l-loadmore>