1234567891011121314151617181920212223242526272829303132333435363738 |
- <view>
- <block wx:for="{{orderList}}" wx:key="index" wx:for-index="{{i}}">
- <view class="goods_infor">
- <view class="each_goods">
- <image src="{{item.logo}}" class="goods_img" mode='aspectFit'></image>
- <view class="goods_cont">
- <view class="goods_price">¥<text>{{item.com_price}}</text></view>
- <view class="goods_name">{{item.com_name}}</view>
- <view class="goods_style">
- <text wx:if="{{item.com_style1}}">{{item.com_style1}} </text>
- <text wx:if="{{item.com_style2}}">{{item.com_style2}} </text>
- <text wx:if="{{item.com_style3}}">{{item.com_style3}} </text>
- <text wx:if="{{item.com_style4}}">{{item.com_style4}} </text>
- <text wx:if="{{item.com_style5}}">{{item.com_style5}} </text>
- </view>
- <view class="goods_num">x{{item.com_num}}</view>
- </view>
- </view>
- </view>
- </block>
- <view class='f-box' style='height:88rpx;line-height:88rpx; font-size:30rpx;color:#666;margin:0 26rpx;'>
- <view class='f-item'>商品合计:</view>
- <view>¥{{orderList[0].order_Price}}</view>
- </view>
- </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 f-s32' open-type="share">分享</button>
- </view>
- <view wx:if="{{!params.static}}" class='f-item f-box f-justify-content-center c-white f-s32' style='width:100%;background:#eea957' bindtap='uploadImg'>{{uploadText}}</view>
- <view class='f-item f-box f-justify-content-center c-white bg-theme f-s32' style='width:100%' bindtap='returnHome'>我的中心</view>
- </view>
- </view>
- </view>
|