confirmOrder.wxml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <!-- 确认订单 -->
  2. <!-- 参团流程 -->
  3. <!-- <view class="process">
  4. <view class="process-item choose-goods">
  5. <view class="process-icon">
  6. <image src="../../images/icon/gift.png"></image>
  7. </view>
  8. <view class="process-text">1.选择商品开团/参团</view>
  9. </view>
  10. <view class="next-icon"><image src="../../images/icon/more.png"></image></view>
  11. <view class="process-item invent">
  12. <view class="process-icon">
  13. <image src="../../images/icon/chat.png"></image>
  14. </view>
  15. <view class="process-text">2.邀请好友参团</view>
  16. </view>
  17. <view class="next-icon"><image src="../../images/icon/more.png"></image></view>
  18. <view class="process-item full">
  19. <view class="process-icon">
  20. <image src="../../images/icon/enough.png"></image>
  21. </view>
  22. <view class="process-text">3.人满成团</view>
  23. </view>
  24. </view> -->
  25. <!-- 流程end -->
  26. <!--地址栏 -->
  27. <view class="address-box" bindtap="toAddrListPage">
  28. <!-- 地址图标 -->
  29. <view class="addr-icon"><image src="../../images/icon/addr.png"></image></view>
  30. <!-- 地址为空 -->
  31. <view class="add-addr" wx:if="{{!fullItemObj.userAddr}}">添加收货地址</view>
  32. <!-- 地址信息 -->
  33. <block wx:if="{{fullItemObj.userAddr}}">
  34. <view class="recipient clearfix">
  35. <text class="username">{{fullItemObj.userAddr.receiver}}</text>
  36. <text class="cellphone">{{fullItemObj.userAddr.mobile}}</text>
  37. </view>
  38. <view class="addr-text">收货地址:{{fullItemObj.userAddr.address}}{{fullItemObj.userAddr.addressName}}{{fullItemObj.userAddr.addrDetail}}</view>
  39. </block>
  40. <!-- 右箭头 -->
  41. <view class="more-icon"><image src="../../images/icon/more.png"></image></view>
  42. <!-- 下虚线 -->
  43. <view class="dotted-line"><image src="../../images/icon/dotted-line.png"></image></view>
  44. </view>
  45. <!--地址栏end -->
  46. <!-- 商品信息 -->
  47. <view class="goods-box">
  48. <!-- <view class="goods-shop">
  49. <view class="shop-icon"><image src="../../images/icon/shop.png"></image></view>
  50. <text class="shop-name">笑橙小店190827</text>
  51. </view>
  52. -->
  53. <!-- 商品信息 -->
  54. <view class="goods-msg" >
  55. <view class="goods-img">
  56. <image src="{{fullItemObj.shopCartItem.pic}}"></image>
  57. <!-- <view class="miaosha">
  58. <image src="../../images/icon/miaosha.png"></image>
  59. </view> -->
  60. </view>
  61. <view class="goods-text clearfix">
  62. <view class="goods-name">{{fullItemObj.shopCartItem.prodName}}</view>
  63. <view class="miaosha">
  64. <image src="../../images/icon/miaosha.png"></image>
  65. </view>
  66. <text class="goods-price">¥{{wxs.toPrice(fullItemObj.shopCartItem.seckillPrice)}}</text>
  67. <text class="goods-price-del">¥{{wxs.toPrice(fullItemObj.shopCartItem.price)}}</text>
  68. <text class="goods-amount">x {{fullItemObj.shopCartItem.prodCount}}</text>
  69. </view>
  70. </view>
  71. </view>
  72. <!-- 商品信息end -->
  73. <!-- 配送&留言 -->
  74. <view class="row">
  75. <!-- <view class="dispatching clearfix">
  76. <text class="dispatching-tit">配送方式</text>
  77. <text class="dispatching-way">快递 免运费</text>
  78. </view> -->
  79. <view class="live-message border-radius">
  80. <text class="message-tit">买家留言</text>
  81. <input class="message-int" placeholder="建议留言前先与商家沟通确认" value="{{remarks}}" bindinput="onRemarksInput"/>
  82. </view>
  83. </view>
  84. <!-- 配送&留言 end -->
  85. <!-- 商品总额 -->
  86. <view class="sum">
  87. <view class="cost-box">
  88. <view class="goods-table clearfix">
  89. <text class="goods-table-tit">商品金额</text>
  90. <text class="goods-table-way">¥{{wxs.toPrice(goodsPrice)}}</text>
  91. </view>
  92. <view class="goods-table clearfix">
  93. <text class="goods-table-tit">运费</text>
  94. <text class="goods-table-way">+ ¥{{wxs.toPrice(transfee)}}</text>
  95. </view>
  96. </view>
  97. <!-- 合计 -->
  98. <view class="total-cost">
  99. 合计:<text class="total-num">¥{{wxs.toPrice(totalPrice)}}</text>
  100. </view>
  101. </view>
  102. <!-- 商品金额 end -->
  103. <!-- 底部 -->
  104. <view class="foot-box">
  105. <view class="foot">
  106. <view class="total-price">合计:<text class="total-price-num">¥{{wxs.toPrice(totalPrice)}}</text></view>
  107. <!-- 提交按钮 -->
  108. <view class="submit-btn" bindtap="commitOrder">提交订单</view>
  109. </view>
  110. </view>
  111. <!-- 底部end -->
  112. <wxs module="wxs" src="../../wxs/number.wxs" />