confirm.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!--pages/order/confirm.wxml-->
  2. <view class="containermiddle">
  3. <van-row>
  4. <van-cell></van-cell>
  5. </van-row>
  6. <van-row>
  7. <view>
  8. <van-col span="4">
  9. <van-image width="100" height="100" src="{{images[0]}}"></van-image>
  10. </van-col>
  11. </view>
  12. <van-col span="10" offset="4" style="font-size:14px">{{stationName}}</van-col>
  13. <van-col span="10" offset="4" style="font-size:12px">油枪号:{{gunNo}}号</van-col>
  14. <van-col span="10" offset="4" style="font-size:12px">油品名:{{oilName}}</van-col>
  15. <van-col span="10" offset="4" style="font-size:12px">油站价:¥{{oilPrice}}/L</van-col>
  16. <van-col span="10" offset="4" style="font-size:12px">优惠价:¥{{oilPrice-discountPrice}}/L</van-col>
  17. </van-row>
  18. <van-row>
  19. <van-cell title="订单金额" icon="balance-o"><text>¥{{orderMoney}}</text></van-cell>
  20. </van-row>
  21. <van-row>
  22. <van-cell title="加油升数" icon="coupon-o"><text>{{oilLitre}}L</text></van-cell>
  23. </van-row>
  24. <van-row>
  25. <van-cell title="优惠金额" icon="discount" arrow-direction="right">-¥{{youHuiAmount}}</van-cell>
  26. </van-row>
  27. <!-- <van-row>
  28. <van-cell title="立减" icon="coupon-o" arrow-direction="right">¥{{liJian}}</van-cell>
  29. </van-row>
  30. <van-row>
  31. <van-cell title="满减" icon="coupon-o" arrow-direction="right">¥{{manJian}}</van-cell>
  32. </van-row>
  33. <van-row>
  34. <van-cell title="优惠" icon="coupon-o" is-link value="暂无可用优惠券" arrow-direction="right">{{youHui}}</van-cell>
  35. </van-row> -->
  36. <van-row>
  37. <van-cell title="油站会员" icon="vip-card-o" is-link value="立即开通" arrow-direction="right">{{vipMoney}}</van-cell>
  38. </van-row>
  39. <view class="btn-box">
  40. <van-submit-bar price="{{ apayMoney*100 }}" button-text="提交订单" bind:submit="pay" button-class="btn-class">
  41. </van-submit-bar>
  42. </view>
  43. <van-toast id="van-toast" />
  44. </view>