orderDetail.wxml 637 B

1234567891011121314151617
  1. <!--pages/order/orderDetail/orderDetail.wxml-->
  2. <!-- 地址 -->
  3. <view class="address" bindtap="goAddressMange">
  4. <text class="icon">收货地址</text>
  5. <view class="addressInfo">
  6. <view class="userInfo">
  7. <text>{{orderDetail.recName}}</text>
  8. <text>{{orderDetail.recMobile}}</text>
  9. </view>
  10. <text>{{orderDetail.recProv}} {{orderDetail.recCity}} {{orderDetail.recDistrict}} {{orderDetail.recAddress}}</text>
  11. </view>
  12. <image class="more" src="/images/mall/back.png" mode="widthFix" srcset=""/>
  13. </view>
  14. <!-- 商品 -->
  15. <existProduct prods="{{prods}}"></existProduct>