foodOrder.wxml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <view class="weui-flex main">
  2. <view class="order-info weui-flex">
  3. <view class="table order-info-wth">
  4. <text class="tab-txt">桌台号:{{tableId}}</text>
  5. </view>
  6. <view class="shop order-info-wth">
  7. <text class="shop-name">{{storeInfo.storeName}}</text>
  8. <view class="go-menu" bindtap="goMenu">
  9. 继续点餐
  10. </view>
  11. </view>
  12. <view class="good-list order-info-wth">
  13. <view class="line"></view>
  14. <view class="good-tran">
  15. <view class="left-border"></view>
  16. <view class="tran-txt">待支付的商品</view>
  17. </view>
  18. <view class="good-info" wx:for="{{cartList}}">
  19. <view style="width:160rpx;float:left">
  20. <image class="img-size" src="{{item.productImg}}"></image>
  21. </view>
  22. <view class="info-db">
  23. <view class="good-name">
  24. {{item.productName}}
  25. </view>
  26. <view class="row">
  27. <view class="good-money">¥{{item.currentPrice}}</view>
  28. <view class="good-num">x{{item.num}}</view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="good-price order-info-wth">
  34. <text class="total-money">¥{{totalPrice}}</text>
  35. <text class="total-txt">总价</text>
  36. </view>
  37. <!-- <view class=" weui-cell_access remark order-info-wth" bindtap="remarkHandle">
  38. <text style="margin-left: 14rpx;">备注</text>
  39. <view style="display: flex;">
  40. <text>填写备注要求</text>
  41. <view class="weui-cell__ft weui-cell__ft_in-access" style="margin-right: 17rpx;"></view>
  42. </view>
  43. </view> -->
  44. <!-- <view wx:if="{{showRemark}}" class="order-info-wth" style="margin-bottom: 10rpx;">
  45. <input style="height: 100rpx;background-color: #FFF;" bindinput="getRemarkCon"></input>
  46. </view> -->
  47. <view style="height:200rpx;"></view>
  48. </view>
  49. </view>
  50. <view class="order-info-ft">
  51. <view class="ft-p">共</view>
  52. <view class="ft-price">{{totalNum}}件,</view>
  53. <view class="ft-p">合计:¥</view>
  54. <view class="ft-price">{{totalPrice}}</view>
  55. <!-- <view class="discount">已优惠{{discount_price}}</view> -->
  56. <button class="pay" type="warn" bindtap="{{is_confirms == true?'confirms':''}}">去支付</button>
  57. </view>