| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--pages/order/confirmOrder/confirmOrder.wxml-->
- <!-- 地址 -->
- <view class="address">
- <image class="icon" src="/images/mall/address.png" mode="widthFix"/>
- <view class="addressInfo">
- <view class="userInfo">
- <text>张某某</text>
- <text>12345678901</text>
- </view>
- <text>上海市普陀区金沙江路250弄43号101室</text>
- </view>
- <image class="more" src="/images/mall/back.png" mode="widthFix" srcset=""/>
- </view>
- <!-- 商品 -->
- <existProduct prods="{{prods}}"></existProduct>
- <!-- 订单信息 -->
- <view class="orderInfo">
- <!-- <view class="info">
- <view>
- <text class="title">配送费</text><text class="value">快递费:¥8.00</text>
- </view>
- <view>
- <text class="value">运险费:¥12.00</text>
- </view>
- <view>
- <text class="title">订单备注</text>
- <text class="value">无备注</text>
- </view>
- </view> -->
- <view class="info">
- <text class="title">商品总件数</text>
- <text class="value">共5件商品</text>
- </view>
- <view class="info">
- <text class="title">商品总价</text>
- <text class="value">¥{{totalPrice}}</text>
- </view>
- </view>
- <button class="submit">确 定</button>
|