confirmOrder.wxml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!--pages/order/confirmOrder/confirmOrder.wxml-->
  2. <!-- 地址 -->
  3. <view class="address" bindtap="goAddressMange">
  4. <image class="icon" src="/images/mall/address.png" mode="widthFix"/>
  5. <view class="addressInfo" wx:if="{{address}}">
  6. <view class="userInfo">
  7. <text>{{address.recipient}}</text>
  8. <text>{{address.mobile}}</text>
  9. </view>
  10. <text>{{address.province}} {{address.city}} {{address.district}} {{address.address}}</text>
  11. </view>
  12. <view class="addressInfo" wx:if="{{!address}}">
  13. <text>请添加收获地址</text>
  14. </view>
  15. <image class="more" src="/images/mall/back.png" mode="widthFix" srcset=""/>
  16. </view>
  17. <!-- 商品 -->
  18. <existProduct prods="{{prods}}"></existProduct>
  19. <!-- 订单信息 -->
  20. <view class="orderInfo">
  21. <!-- <view class="info">
  22. <view>
  23. <text class="title">配送费</text><text class="value">快递费:¥8.00</text>
  24. </view>
  25. <view>
  26. <text class="value">运险费:¥12.00</text>
  27. </view>
  28. <view>
  29. <text class="title">订单备注</text>
  30. <text class="value">无备注</text>
  31. </view>
  32. </view> -->
  33. <view class="info">
  34. <text class="title">商品总件数</text>
  35. <text class="value">共{{prods.length}}件商品</text>
  36. </view>
  37. <view class="info">
  38. <text class="title">商品总价</text>
  39. <text class="value">¥{{totalPrice}}</text>
  40. </view>
  41. </view>
  42. <button class="submit" bindtap="submitOrder">确 定</button>