12345678910111213141516171819202122232425262728293031323334353637 |
- <!--pages/shouye.wxml-->
- <!-- <l-search-bar l-container-class="aa" bg-color="#e5e7df" placeholder="搜索" show-cancel="{{false}}" bind:linfocus="search"/> -->
- <l-search-bar l-container-class="aa" bg-color="#e5e7df" placeholder="搜索" show-cancel="{{false}}" bind:linconfirm="search"/>
- <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">
- <l-tabpanel has-line="false" wx:for="{{scrollAbleTabs}}" tab="{{item.tab}}" key="{{item.key}}" slot="{{item.key}}" wx:key="key" bind:linchange="keyData">
- <!-- <view class="tab-content">{{item.tab}}</view> -->
- </l-tabpanel>
- </l-tabs>
- <view wx:for="{{goodsList}}" wx:key="msg">
- <l-card type="primary" l-img-class="right-card" position="left" image="{{item.goods_image_url}}"
- bindtap="goodsDetail" data-sign="{{item.goods_sign}}" data-searchId="{{item.search_id}}" full="true" >
- <view class="super-long-test">
- <image class="empty-icon" src="/pages/image/dd.png" ></image>
- {{item.goods_name}}
- </view>
- <view class="containertag">
- <l-tag plain="{{true}}" font-color="#d81e06" shape="circle" size="medium" l-class="tag" class="describe" >{{item.coupon_discount/100}}元券</l-tag>
- <l-tag plain="{{true}}" font-color="#d81e06" shape="circle" size="medium" l-class="tag" class="fanli">返利{{item.promotion_rate/100}}</l-tag>
-
- </view>
- <view class="price-v">
- <text class="price">劵后¥{{(item.min_group_price-item.coupon_discount)/100}}</text> <text class="yprice">原价{{item.min_group_price/100}}</text>
- </view>
- <text class="contentcard">
- 销量:{{item.sales_tip}}
- </text>
- <text class="contentcard">店铺:{{item.mall_name}}</text>
- </l-card>
- </view>
- <l-loadmore show="{{true}}" end-text="我是有底线的~" type="{{lType}}">
- <!-- <view slot="content">
- 我是有底线的~
- </view> -->
- </l-loadmore>
|