confirmOrder.wxml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!--pages/order/confirmOrder/confirmOrder.wxml-->
  2. <!-- 地址 -->
  3. <view class="address">
  4. <image class="icon" src="/images/mall/address.png" mode="widthFix"/>
  5. <view class="addressInfo">
  6. <view class="userInfo">
  7. <text>张某某</text>
  8. <text>12345678901</text>
  9. </view>
  10. <text>上海市普陀区金沙江路250弄43号101室</text>
  11. </view>
  12. <image class="more" src="/images/mall/back.png" mode="widthFix" srcset=""/>
  13. </view>
  14. <!-- 商品 -->
  15. <existProduct></existProduct>
  16. <!-- 订单信息 -->
  17. <view class="orderInfo">
  18. <view class="info">
  19. <view>
  20. <text class="title">配送费</text><text class="value">快递费:¥8.00</text>
  21. </view>
  22. <view>
  23. <text class="value">运险费:¥12.00</text>
  24. </view>
  25. <view>
  26. <text class="title">订单备注</text>
  27. <text class="value">无备注</text>
  28. </view>
  29. </view>
  30. <view class="info">
  31. <text class="title">商品总件数</text>
  32. <text class="value">共5件商品</text>
  33. </view>
  34. <view class="info">
  35. <text class="title">商品总价</text>
  36. <text class="value">¥8290.00</text>
  37. </view>
  38. </view>
  39. <button class="submit">确 定</button>