1234567891011121314151617181920212223242526272829303132333435363738 |
- <!-- <view class='canvas-box'>
- <image src='../../images/canvas_order.png' mode='widthFix'></image>
- </view> -->
- <view>
- <block wx:for="{{carts}}" wx:key="index" wx:for-index="{{i}}">
- <view class="goods_infor">
- <view class="each_goods">
- <image src="{{item.logo}}" class="goods_img"></image>
- <view class="goods_cont">
- <view class="goods_price">¥<text>{{item.new_price}}</text></view>
- <view class="goods_name">{{item.name}}</view>
- <view class="goods_style">
- <text wx:if="{{item.style1_name}}">{{item.style1_name}} </text>
- <text wx:if="{{item.style2_name}}">{{item.style2_name}} </text>
- <text wx:if="{{item.style3_name}}">{{item.style3_name}} </text>
- <text wx:if="{{item.style4_name}}">{{item.style4_name}} </text>
- <text wx:if="{{item.style5_name}}">{{item.style5_name}} </text>
- <text wx:if="{{item.giftbox_name}}">{{item.giftbox_name}} </text>
- <text wx:if="{{item.process_name}}">{{item.process_name}}</text>
- </view>
- <view class="goods_num">x{{item.num}}</view>
- </view>
- </view>
- </view>
- </block>
- </view>
- <view class='footer'>
- <view class='footer-box'>
- <view class='f-box'>
- <view class='f-item f-box f-justify-content-center c-white bg-orange' style='width:100%'>
- <button class='share-box f-item' open-type="share">分享</button>
- </view>
- <view class='f-item f-box f-justify-content-center c-white' style='width:100%;background:#eea957' bindtap='uploadImg'>上传付款凭证</view>
- <view class='f-item f-box f-justify-content-center c-white bg-theme' style='width:100%' bindtap='orderList'>查看订单</view>
- </view>
- </view>
- </view>
|