submitorder.wxml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <view style="background: #f5f5f5; padding: 20rpx 0;">
  2. <view class="container">
  3. <!-- 地址选择 -->
  4. <view class="dizhi_boxs" bindtap="setGridView">
  5. <view class="address_info">
  6. <image src="{{dingweiimg}}" class="location_icon"></image>
  7. </view>
  8. <view class="contact_info">
  9. <view class="address_text">上海市浦东新区创新大道88号科技智慧城</view>
  10. <view style="margin-top: 10rpx;">
  11. <text class="name">陈宇轩</text>
  12. <text class="phone">16743435789</text>
  13. </view>
  14. </view>
  15. <image src="{{youjiantouimg}}" class="right_arrow"></image>
  16. </view>
  17. <!-- 购买商品列表 -->
  18. <view class="product_list">
  19. <block wx:for="{{products}}" wx:key="index">
  20. <view class="product_item">
  21. <image src="{{item.image}}" class="product_image"></image>
  22. <view class="product_details">
  23. <view class="product_name">{{item.name}}</view>
  24. <view class="product_desc">{{item.desc}}</view>
  25. <view class="price_and_quantity">
  26. <text class="product_price">¥{{item.price}}</text>
  27. <view class="quantity_selector">
  28. <van-stepper
  29. value="{{item.quantity}}"
  30. data-id="{{item.id}}"
  31. bind:change="onChange"
  32. />
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </block>
  38. </view>
  39. <!-- 底部结算栏 -->
  40. <view class="footer">
  41. <view class="total_amount">
  42. <text>合计:¥{{totalAmount}}</text>
  43. </view>
  44. <view>
  45. <button class="pay_button" bindtap="handlePay">立即支付</button>
  46. </view>
  47. </view>
  48. </view>
  49. </view>