123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!--pages/details/details.wxml-->
- <scroll-view class="scroll-view_H" wx:for="{{goodsDetails}}" wx:key="msg" scroll-into-view="{{toView}}" scroll-y="true" scroll-with-animation="true" bindscroll="bindscroll">
- <view class="banner" id="swiper-container">
-
- <swiper class="swiper_box" indicator-dots="true" indicator-active-color="#fff" circular="true">
- <swiper-item wx:for="{{item.goods_gallery_urls}}" wx:key="imgs" >
- <view class="imagesize">
- <image src=" {{item}}" class="in-image" mode="aspectFill" lazy-load="false" />
- </view>
-
- </swiper-item>
- </swiper>
- </view>
- <view class="goods-info">
- <view class="goodsTitle">
- <l-avatar size="35" shape="square" src="/images/jd.png" />
- <text class="goodsName">{{item.goods_name}}</text>
- </view>
- <view class="goodsPrice">
- <text class="jprice">劵后价¥{{(item.min_group_price-item.coupon_discount)/100}}元</text>
- <l-button plain="{{true}}" type="error" width="50" height="40" class="fanli" >返利{{item.rebate}}元</l-button>
- </view>
- <view class="goodsbtm">
- <text class="yprice">原价¥{{item.min_group_price/100}} </text>
- <text class="xiaoliang"> 销量:{{item.sales_tip}}</text>
- </view>
- <view class="goodsbtm">
- <!-- <l-popup show="{{true}}" content-align="center" locked="{{true}}">
- <view class='pupop-content'>
- <view class='pupop-close' bindtap='onHidePupopTap'>关闭弹出层</view>
- </view>
- </l-popup> -->
- <l-button bg-color="#FF6A6A" size="large" bind:lintap="counponBtn" data-searchId="{{searchId}}" data-goodsSignList="{{item.goods_sign}}">
- <text >领取{{item.coupon_discount/100}}元优惠劵/购物</text>
-
- </l-button>
- </view>
- <view class="goodsbtm">
- <text class="dianpu">店铺:{{item.mall_name}}</text>
- </view>
- </view>
- <view>
- <view class="goodsDetail">商品详情</view>
- <view class="goodsDesc">{{item.goods_desc}}</view>
-
- </view>
- <!-- <view class='imagesize'>
- <image src="{{item.goods_image_url}}" class='in-image' ode="aspectFill" >
- </image>
- </view> -->
- <view class='imagesize' wx:for="{{item.goods_gallery_urls}}" wx:key="imgs" >
- <image src="{{item}}" class='in-image' ode="aspectFit" >
- </image>
- </view>
- <!-- <view><image src="{{item.goods_image_url}}" class="slide-image" mode="aspectFill" lazy-load="false" /></view> -->
- <!-- <view class="goodsDetail">商品推荐</view> -->
- </scroll-view>
- <l-tab-bar list="{{list}}" />
|