order-detail.wxml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!--pages/orders/order-detail.wxml-->
  2. <view class="container">
  3. <navigation-bar color="#fff" title="订单详情"></navigation-bar>
  4. <scroll-view class="record-list" type="list" scroll-y bindscrolltolower="loadMore">
  5. <view class="order-status">
  6. <view class="status">
  7. <!-- <image src="{{ statusList[status].logo }}"></image> -->
  8. <text>{{ statusList[status].title }}</text>
  9. </view>
  10. <view class="tips">{{ statusList[status].content }}</view>
  11. </view>
  12. <view class="order-content">
  13. <view class="item-content">
  14. <image class='goods-icon' src="{{ goodsInfo.pic }}" mode="" />
  15. <view class="goods-desc">
  16. <view class="goodsInfo">
  17. <view class="goods-name">{{ goodsInfo.name }}</view>
  18. <view class="goods-price">
  19. <text class="stuff">¥ </text>
  20. <text class="priceZ">{{ goodsInfo.integerPart }}</text>
  21. <text class="priceF">.{{ goodsInfo.decimalPart }}</text>
  22. </view>
  23. </view>
  24. <view class="goods-type">
  25. <view class="goods-card">{{ goodsInfo.typeName }}</view>
  26. <view class="goods-num">共 1 件</view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <!-- <view class="order-time">
  32. <view class="order-item">
  33. <view class="title">订单号</view>
  34. <view class="value">2133442226668</view>
  35. </view>
  36. <view class="order-item">
  37. <view class="title">下单时间</view>
  38. <view class="value">2023-07-12 18:12:45</view>
  39. </view>
  40. </view> -->
  41. </scroll-view>
  42. <view class="order-btn">
  43. <view class="price">
  44. <view class="desc">支付金额:</view>
  45. <view class="currentPrice">
  46. <text class="stuff">¥ </text>
  47. <text class="priceZ">{{ goodsInfo.integerPart }}</text>
  48. <text class="priceF">.{{ goodsInfo.decimalPart }}</text>
  49. </view>
  50. </view>
  51. <button type="primary" bind:tap="onSubmit">{{ goodsInfo.orderNo ? '继续支付' : '立即支付' }}</button>
  52. </view>
  53. <!-- 客服 -->
  54. <service wx:if="{{serviceShow}}"></service>
  55. </view>