...
|
...
|
@@ -16,6 +16,30 @@ |
|
|
</view>
|
|
|
</view>
|
|
|
<view class="gap"></view>
|
|
|
|
|
|
<!-- 促销 -->
|
|
|
<view class="promotion" wx:if="{{proList.length}}">
|
|
|
<view class="pro-header" bindtap="toggleExpandPro">
|
|
|
<text>促销</text>
|
|
|
<view wx:if="{{expandPro}}" class="expand-tip">促销优惠信息以确认订单页为准</view>
|
|
|
<view wx:else class="pro-types">
|
|
|
<view wx:for="{{proTypes}}" wx:key="{{index}}" class="type">{{item}}</view>
|
|
|
</view>
|
|
|
<text wx:if="{{!expandPro}}" class="expand-arrow iconfont icon-bottom"></text>
|
|
|
<text wx:else class="expand-arrow iconfont icon-top"></text>
|
|
|
</view>
|
|
|
<view wx:if="{{expandPro}}" class="pro-detail">
|
|
|
<view wx:for="{{proList}}" wx:key="index" class="detail-item">
|
|
|
<view class="item-type">{{item.promotionType}}</view>
|
|
|
<view class="item-detail">
|
|
|
<view class="detail-title">{{item.promotionTitle}}</view>
|
|
|
<view class="detail-time">2017.11.24-2019.02.28</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="gap" wx:if="{{proList.length}}"></view>
|
|
|
|
|
|
<!-- 支持的服务 -->
|
|
|
<view class="support-service"
|
|
|
style="display: {{productSupportServiceList.length>0?'block':'none'}} ;flex-direction: row; display: flex;">
|
...
|
...
|
@@ -26,18 +50,19 @@ |
|
|
</view>
|
|
|
</view>
|
|
|
<view class="gap"></view>
|
|
|
|
|
|
<!--店铺-->
|
|
|
<view class='row-shop-brief'>
|
|
|
<view class='row-shop-brief' bindtap="toShop">
|
|
|
<image class='shop-icon' src="{{helper.image(shopInfo.brand_ico, 120, 60)}}"></image>
|
|
|
<text class='shop-name'>{{shopInfo.brand_name}}</text>
|
|
|
<text class="shop-nav-arrow iconfont icon-right"></text>
|
|
|
<text class='shop-nav' bindtap="toShop">返回首页</text>
|
|
|
<text class='shop-nav'>返回首页</text>
|
|
|
</view>
|
|
|
|
|
|
<view class="gap"></view>
|
|
|
<view class="goods-info" style="display:{{productDesc.length>0?'block':'none'}}">
|
|
|
<view class="module-title">
|
|
|
<text class="text">商品信息 <text class="sub-text">DESCRIPTION</text></text>
|
|
|
<view class="text">商品信息 <text class="sub-text">DESCRIPTION</text></view>
|
|
|
</view>
|
|
|
<view class="table">
|
|
|
<view class="tr" wx:for="{{productDesc.length/2}}" wx:key="unique">
|
...
|
...
|
@@ -51,7 +76,7 @@ |
|
|
</view>
|
|
|
<view class="goods-info" style="display:{{productSizeContent.length>0?'block':'none'}}">
|
|
|
<view class="module-title">
|
|
|
<text class="text">尺码信息 <text class="sub-text">INFORMATION</text></text>
|
|
|
<text class="text">尺码信息 <text class="sub-text">SIZE INFO</text></text>
|
|
|
</view>
|
|
|
<scroll-view class="table">
|
|
|
<view class="tr">
|
...
|
...
|
@@ -65,13 +90,13 @@ |
|
|
|
|
|
<view class="goods-info" style="display:{{productMeasurementImage?'block':'none'}}">
|
|
|
<view class="module-title">
|
|
|
<text class="text">测量信息 <text class="sub-text">DESCRIPTION</text></text>
|
|
|
<text class="text">测量信息 <text class="sub-text">MEASUREMENT METHOD</text></text>
|
|
|
</view>
|
|
|
<image src="{{productMeasurementImage}}" mode="widthFix"></image>
|
|
|
</view>
|
|
|
<view class="goods-info" style="display:{{productMaterialList[0].remark?'block':'none'}}">
|
|
|
<view class="module-title">
|
|
|
<text class="text">商品材质 <text class="sub-text">DESCRIPTION</text></text>
|
|
|
<text class="text">商品材质 <text class="sub-text">MATERIALS</text></text>
|
|
|
</view>
|
|
|
<view class="info-description">
|
|
|
<text class="light-gray-font">{{productMaterialList[0].remark}}</text>
|
...
|
...
|
@@ -88,7 +113,7 @@ |
|
|
|
|
|
<view class="goods-info img" style="display:{{productIntroImageList.length>0?'block':'none'}}">
|
|
|
<view class="module-title">
|
|
|
<text class="text">商品详情 <text class="sub-text">DESCRIPTION</text></text>
|
|
|
<text class="text">商品详情 <text class="sub-text">DETAILS</text></text>
|
|
|
</view>
|
|
|
<view wx:for="{{productIntroImageList}}" wx:key="introImage" style="text-align:center">
|
|
|
<image class="intro-image" src="{{item}}" mode="widthFix"></image>
|
...
|
...
|
|