| 1234567891011121314151617181920212223242526 |
- <!--pages/order/orderDetail/orderDetail.wxml-->
- <!-- 地址 -->
- <view class="address" bindtap="goAddressMange">
- <text class="icon">收货地址</text>
- <view class="addressInfo">
- <view class="userInfo">
- <text>{{orderDetail.recName}}</text>
- <text>{{orderDetail.recMobile}}</text>
- </view>
- <text>{{orderDetail.recProv}} {{orderDetail.recCity}} {{orderDetail.recDistrict}} {{orderDetail.recAddress}}</text>
- </view>
- <image class="more" src="/images/mall/back.png" mode="widthFix" srcset=""/>
- </view>
- <!-- 商品 -->
- <existProduct prods="{{prods}}"></existProduct>
- <!-- 物流单号 -->
- <view class="logisticsNo">
- <text>物流单号</text>
- <view>
- <text>123456780</text>
- <text data-no="{{1234567}}" catchtap="copy"> / 复制</text>
- </view>
- </view>
|