confirmOrder.wxml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <!-- 点击结算后的确认订单 -->
  2. <view class="container {{hidden}}">
  3. <block wx:for="{{carts}}" wx:key="index" wx:for-index="{{i}}">
  4. <view class="goods_infor">
  5. <view class="each_goods">
  6. <image src="{{item.logo}}" class="goods_img"></image>
  7. <view class="goods_cont">
  8. <view class="goods_price">¥<text>{{loginStatic && item.product_channel_price ? item.product_channel_price : item.new_price}}</text></view>
  9. <view class="goods_name">{{item.name}}</view>
  10. <view class="goods_style">
  11. <text wx:if="{{item.style1_name}}">{{item.style1_name}} </text>
  12. <text wx:if="{{item.style2_name}}">{{item.style2_name}} </text>
  13. <text wx:if="{{item.style3_name}}">{{item.style3_name}} </text>
  14. <text wx:if="{{item.style4_name}}">{{item.style4_name}} </text>
  15. <text wx:if="{{item.style5_name}}">{{item.style5_name}} </text>
  16. <text wx:if="{{item.giftbox_name}}">{{item.giftbox_name}} </text>
  17. <text wx:if="{{item.process_name}}">{{item.process_name}}</text>
  18. </view>
  19. <view class="goods_num">x{{item.num}}</view>
  20. </view>
  21. </view>
  22. </view>
  23. </block>
  24. <!-- <view bindtap='coupon' class="youhuijuan_title double_line">
  25. <view class="text1">选择优惠劵</view>
  26. <text class="coupon_name">{{couponName}}</text>
  27. <image src="{{addressEditImg}}" class="address_edit_img flexbox"/>
  28. </view> -->
  29. <view class="infor_content">
  30. <!-- <view class="each_infor borderBottom">
  31. <view class="infor_title">配送费</view>
  32. <view class="infor_num">快递¥0.00</view>
  33. <view class="clearfix"></view>
  34. </view> -->
  35. <!--
  36. <view class="each_infor peisong borderBottom">
  37. <view class="infor_title">定制费用</view>
  38. <view class="infor_num">¥0.00</view>
  39. <view class="clearfix"></view>
  40. </view> -->
  41. <!-- <view class="each_infor peisong borderBottom">
  42. <view class="infor_title">优惠劵</view>
  43. <view class="infor_num infor_num_coupon">-¥{{minNum}}</view>
  44. <view class="clearfix"></view>
  45. </view> -->
  46. <view class="each_infor peisong borderBottom">
  47. <view class="infor_title">商品合计</view>
  48. <view class="infor_num">¥{{total1}}</view>
  49. <view class="clearfix"></view>
  50. </view>
  51. <!-- 发票 -->
  52. <!-- <view class="add_invoice_wrap borderBottom">
  53. <label bindtap="checkboxChange" data-value="{{value}}" class="each_infor peisong checkbox">
  54. <checkbox bindtap="checkboxChange" class="{{checked ? 'checkact' : ''}}" disabled='{{invoice ? false : true}}' value="{{value}}" checked="{{checked}}" color="#fff"/>{{invCont}}
  55. </label>
  56. <view bindtap='invoice' class="addInvoice"><image src='../../images/gray_more_2.png'></image></view>
  57. </view> -->
  58. <!-- 同意协议 -->
  59. <!-- <view class="add_invoice_wrap">
  60. <label bindtap="agrService" data-value="{{servalue}}" class="each_infor peisong">
  61. <checkbox bindtap="agrService" class="{{serchecked ? 'checkact' : ''}}" checked="{{serchecked}}" color="#fff"/>
  62. 我同意
  63. </label>
  64. <navigator url='/pages/serviceCont/serviceCont' class='service_navig'>《大良造服务协议》</navigator>
  65. </view> -->
  66. </view>
  67. <view class="footer_total">
  68. <!-- <block wx:if="{{allowPay == 0}}">
  69. <view class="footer_right {{serchecked ? '' : 'footer_right_gray'}}" bindtap="{{serchecked ? 'save' : ''}}">去付款</view>
  70. </block>
  71. <block wx:else>
  72. <view class="footer_right {{footer_right_gray}}" >去付款</view>
  73. </block> -->
  74. <block wx:if="{{allowPay == 0}}">
  75. <form bindsubmit="{{serchecked ? 'save' : ''}}" data-id="{{i}}" report-submit >
  76. <button formType="submit" class='form_button'>
  77. <view class="footer_right {{serchecked ? '' : 'footer_right_gray'}}">生成订单</view>
  78. </button>
  79. </form>
  80. </block>
  81. <block wx:else>
  82. <view class="footer_right {{footer_right_gray}}" >生成订单</view>
  83. </block>
  84. <view class="footer_left">
  85. <text class="footer_left_totaltit">¥</text>
  86. <text class="footer_left_total">{{total2}}</text>
  87. <!-- <text class='footer_left_coupon'>已优惠¥{{minNum}}</text> -->
  88. </view>
  89. </view>
  90. </view>
  91. <view class="modal_wrap {{hiddenmodal ? 'hidden' : ''}}">
  92. <view class="modal {{hiddenmodal ? 'hidden' : ''}}">{{modalCont}}</view>
  93. </view>
  94. <!-- <view wx:if="{{maskBg}}" class="modal_bg "></view> -->
  95. <view class="modal_wrap {{hiddenmodal ? 'hidden' : ''}}">
  96. <view class="modal {{hiddenmodal ? 'hidden' : ''}}">{{modalCont}}</view>
  97. </view>