...
|
...
|
@@ -22,23 +22,26 @@ |
|
|
</view>
|
|
|
|
|
|
<view class="split-line"></view>
|
|
|
<view class="goods-list">
|
|
|
<view class="goods-list" wx:for="{{goodsList}}" wx:key="unique">
|
|
|
<view class="goods-item">
|
|
|
<image class="thumb" src="http://img11.static.yhbimg.com/goodsimg/2017/07/26/14/011b6a77d9e4105c50811faba17ed72466.jpg?imageMogr2/thumbnail/235x314/extent/235x314/background/d2hpdGU=/position/center/quality/80"></image>
|
|
|
</view>
|
|
|
<view class="goods-item">
|
|
|
<image class="thumb" src="http://img11.static.yhbimg.com/goodsimg/2017/07/26/14/011b6a77d9e4105c50811faba17ed72466.jpg?imageMogr2/thumbnail/235x314/extent/235x314/background/d2hpdGU=/position/center/quality/80"></image>
|
|
|
<image class="thumb" src="{{item.goods_images}}"></image>
|
|
|
<view class="goods-type price-gift-tag" wx:if="{{item.goods_type === 'price_gift'}}">
|
|
|
<text>加价购</text>
|
|
|
</view>
|
|
|
<view class="goods-type gift-tag" wx:if="{{item.goods_type === 'gift'}}">
|
|
|
<text>赠品</text>
|
|
|
</view>
|
|
|
<view class="name-price">
|
|
|
<text class="name item-left">HIPANDA 男太空棉警示线长款羽绒服黑色</text>
|
|
|
<text class="price item-right red">¥ 799.00</text>
|
|
|
<text class="name item-left">{{item.product_name}}</text>
|
|
|
<text class="price item-right red">¥ {{item.sales_price}}</text>
|
|
|
</view>
|
|
|
<view class="color-size-num">
|
|
|
<text class="color-size item-left">颜色:黑色 尺码:L</text>
|
|
|
<text class="num item-right">x 1</text>
|
|
|
<text class="color-size item-left">颜色:{{item.factory_goods_name}} 尺码:{{item.size_name}}</text>
|
|
|
<text class="num item-right">x {{item.buy_number}}</text>
|
|
|
</view>
|
|
|
<view class="warn-tip red">
|
|
|
<view class="warn-tip red" wx:if="{{item.warnTip}}">
|
|
|
<text class="iconfont icon-warn-fill"></text>
|
|
|
<text class="tip">不支持七天退换货</text>
|
|
|
<text class="tip">{{item.warnTip}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
...
|
...
|
@@ -47,7 +50,7 @@ |
|
|
<view class="choose-item delivery-way">
|
|
|
配送方式
|
|
|
<view class="change-btn" bindtap="toggleDeliveryWayList">
|
|
|
<text>{{deliveryWayText}}</text>
|
|
|
<text class="btn-text">{{deliveryWayText}}</text>
|
|
|
<text class="iconfont {{deliveryWayEditStatus ? 'icon-top' : 'icon-bottom'}}"></text>
|
|
|
</view>
|
|
|
</view>
|
...
|
...
|
@@ -60,7 +63,7 @@ |
|
|
<view class="choose-item delivery-time">
|
|
|
送货时间
|
|
|
<view class="change-btn" bindtap="toggleDeliveryTimeList">
|
|
|
<text>{{deliveryTimeText}}</text>
|
|
|
<text class="btn-text">{{deliveryTimeText}}</text>
|
|
|
<text class="iconfont {{deliveryTimeEditStatus ? 'icon-top' : 'icon-bottom'}}"></text>
|
|
|
</view>
|
|
|
</view>
|
...
|
...
|
@@ -76,8 +79,8 @@ |
|
|
</view>
|
|
|
<view wx:if="{{invoiceNeedStatus}}" class="choose-item invoice">
|
|
|
发票信息
|
|
|
<view class="change-btn">
|
|
|
<text>{{invoiceName}}</text>
|
|
|
<view class="change-btn" bindtap="changeInvoiceInfo">
|
|
|
<text class="btn-text">{{invoiceInfo.invoiceType === 2 ? '电子发票' : '纸质发票'}} - {{invoiceInfo.invoiceTitleShow}}</text>
|
|
|
<text class="iconfont icon-right"></text>
|
|
|
</view>
|
|
|
</view>
|
...
|
...
|
|