orderCanavs.wxml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <view>
  2. <block wx:for="{{orderList}}" wx:key="index" wx:for-index="{{i}}">
  3. <view class="goods_infor">
  4. <view class="each_goods">
  5. <image src="{{item.logo}}" class="goods_img" mode='aspectFit'></image>
  6. <view class="goods_cont">
  7. <view class="goods_price">¥<text>{{item.com_price}}</text></view>
  8. <view class="goods_name">{{item.com_name}}</view>
  9. <view class="goods_style">
  10. <text wx:if="{{item.com_style1}}">{{item.com_style1}} </text>
  11. <text wx:if="{{item.com_style2}}">{{item.com_style2}} </text>
  12. <text wx:if="{{item.com_style3}}">{{item.com_style3}} </text>
  13. <text wx:if="{{item.com_style4}}">{{item.com_style4}} </text>
  14. <text wx:if="{{item.com_style5}}">{{item.com_style5}} </text>
  15. </view>
  16. <view class="goods_num">x{{item.com_num}}</view>
  17. </view>
  18. </view>
  19. </view>
  20. </block>
  21. <view class='f-box' style='height:88rpx;line-height:88rpx; font-size:30rpx;color:#666;margin:0 26rpx;'>
  22. <view class='f-item'>商品合计:</view>
  23. <view>¥{{orderList[0].order_Price}}</view>
  24. </view>
  25. </view>
  26. <view class='footer'>
  27. <view class='footer-box'>
  28. <view class='f-box'>
  29. <view class='f-item f-box f-justify-content-center c-white bg-orange' style='width:100%'>
  30. <button class='share-box f-item f-s32' open-type="share">分享</button>
  31. </view>
  32. <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>
  33. <view class='f-item f-box f-justify-content-center c-white bg-theme f-s32' style='width:100%' bindtap='returnHome'>我的中心</view>
  34. </view>
  35. </view>
  36. </view>