orderDetails.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <view class="details">
  2. <view class="address">
  3. <van-cell-group inset>
  4. <van-cell title="哈尔滨师范大学第一公寓2门321" label="姓名:吴迪(先生)" />
  5. </van-cell-group>
  6. </view>
  7. <view class="products">
  8. <van-cell-group inset>
  9. <view class="products-top">
  10. <van-cell border="{{false}}">
  11. <image class='img-1' src='./images/malatang.png' slot="icon"></image>
  12. <text class="text1">老式麻辣烫(微辣)</text>
  13. <text class="text2">¥9.9+20积分</text>
  14. <text class="text3">*2</text>
  15. <text class="text4">¥15.9</text>
  16. </van-cell>
  17. </view>
  18. <view class="products-content">
  19. <van-cell value="¥0" label="包装费:" false value-class="cell-value1" />
  20. </view>
  21. <view class="products-bottom">
  22. <van-cell value="¥3" label="配送费:" value-class="cell-value1" />
  23. </view>
  24. </van-cell-group>
  25. </view>
  26. <view class="remark">
  27. <van-cell-group inset>
  28. <van-cell title="" value="" label="备注" />
  29. <van-cell title="" value="" label="不要香菜,不要蒜" />
  30. </van-cell-group>
  31. </view>
  32. <view class="message">
  33. <van-cell-group inset>
  34. <van-cell value="989898989898989" label="订单编号:" value-class="cell-value2" />
  35. <van-cell value="2023-04-26 10:43:21" label="交易时间:" value-class="cell-value2" />
  36. <van-cell value="30积分" label="积分抵扣:" value-class="cell-value2" />
  37. <van-cell value="¥21.98" label="实付金额:" value-class="cell-value1" />
  38. </van-cell-group>
  39. </view>
  40. <view class="refund">
  41. <van-row custom-class="refund-1">
  42. <van-col offset="2" span="9">
  43. <van-button color="#ccc" round block> 退款 </van-button>
  44. </van-col>
  45. <van-col offset="2" span="9">
  46. <van-button color="rgb(247, 153, 47)" round block>重新打印</van-button>
  47. </van-col>
  48. </van-row>
  49. </view>
  50. </view>