123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <view class="weui-flex main">
- <view class="order-info weui-flex">
- <view class="table order-info-wth">
- <text class="tab-txt">桌台号:{{tableId}}</text>
- </view>
- <view class="shop order-info-wth">
- <text class="shop-name">{{storeInfo.storeName}}</text>
- <view class="go-menu" bindtap="goMenu">
- 继续点餐
- </view>
- </view>
- <view class="good-list order-info-wth">
- <view class="line"></view>
- <view class="good-tran">
- <view class="left-border"></view>
- <view class="tran-txt">待支付的商品</view>
- </view>
- <view class="good-info" wx:for="{{cartList}}">
- <view style="width:160rpx;float:left">
- <image class="img-size" src="{{item.productImg}}"></image>
- </view>
- <view class="info-db">
- <view class="good-name">
- {{item.productName}}
- </view>
-
- <view class="row">
- <view class="good-money">¥{{item.currentPrice}}</view>
- <view class="good-num">x{{item.num}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="good-price order-info-wth">
- <text class="total-money">¥{{totalPrice}}</text>
- <text class="total-txt">总价</text>
- </view>
-
- <!-- <view class=" weui-cell_access remark order-info-wth" bindtap="remarkHandle">
- <text style="margin-left: 14rpx;">备注</text>
- <view style="display: flex;">
- <text>填写备注要求</text>
- <view class="weui-cell__ft weui-cell__ft_in-access" style="margin-right: 17rpx;"></view>
- </view>
- </view> -->
- <!-- <view wx:if="{{showRemark}}" class="order-info-wth" style="margin-bottom: 10rpx;">
- <input style="height: 100rpx;background-color: #FFF;" bindinput="getRemarkCon"></input>
- </view> -->
- <view style="height:200rpx;"></view>
- </view>
- </view>
- <view class="order-info-ft">
- <view class="ft-p">共</view>
- <view class="ft-price">{{totalNum}}件,</view>
- <view class="ft-p">合计:¥</view>
- <view class="ft-price">{{totalPrice}}</view>
- <!-- <view class="discount">已优惠{{discount_price}}</view> -->
- <button class="pay" type="warn" bindtap="{{is_confirms == true?'confirms':''}}">去支付</button>
- </view>
|