1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!--pages/details/details.wxml-->
- <scroll-view class="scroll-container" wx:for="{{goodsDetails}}" wx:key="msg" scroll-into-view="{{toView}}" scroll-y="true" scroll-with-animation="true" bindscroll="bindscroll">
- <view class="swiper-container" 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" >
- <image src=" {{item}}" class="slide-image" mode="aspectFill" lazy-load="false" />
- </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.promotion_rate/100}}元</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 class="label-title">
- <view class="goodsDetail">商品详情</view>
- <view class="goodsDesc">{{item.goods_desc}}</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}}" />
|