| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!--pages/order/confirmOrder/confirmOrder.wxml-->
- <!-- 地址 -->
- <view class="address" bindtap="goAddressMange">
- <image class="icon" src="/images/mall/address.png" mode="widthFix"/>
- <view class="addressInfo" wx:if="{{address}}">
- <view class="userInfo">
- <text>{{address.recipient}}</text>
- <text>{{address.mobile}}</text>
- </view>
- <text>{{address.province}} {{address.city}} {{address.district}} {{address.address}}</text>
- </view>
- <view class="addressInfo" wx:if="{{!address}}">
- <text>请添加收获地址</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" wx:if="{{showRemark}}">
- <view>
- <text class="title">微博名</text>
- <input type="text" class="input" data-key="remark" placeholder="请输入微博名" bindinput="inputChange"/>
- </view>
- </view>
- <view class="info">
- <text class="title">商品总件数</text>
- <text class="value">共{{prods.length}}件商品</text>
- </view>
- <view class="info">
- <text class="title">商品总价</text>
- <text class="value">¥{{totalPrice}}</text>
- </view>
- </view>
- <button class="submit" bindtap="submitOrder">确 定</button>
|