log.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <!-- 物流追踪 -->
  2. <template>
  3. <s-layout title="物流追踪">
  4. <view class="log-wrap">
  5. <!-- 商品信息 -->
  6. <view class="log-card ss-flex ss-m-20 ss-r-10" v-if="goodsImages.length > 0">
  7. <uni-swiper-dot :info="goodsImages" :current="state.current" mode="round">
  8. <swiper class="swiper-box">
  9. <swiper-item v-for="(item, index) in goodsImages" :key="index">
  10. <image class="log-card-img" :src="sheep.$url.static(item.image)" />
  11. </swiper-item>
  12. </swiper>
  13. </uni-swiper-dot>
  14. <view class="log-card-msg">
  15. <!-- TODO 芋艿:优化点:展示状态 -->
  16. <!-- <view class="ss-flex ss-m-b-8">-->
  17. <!-- <view>物流状态:</view>-->
  18. <!-- <view class="warning-color">{{ state.info.status_text }}</view>-->
  19. <!-- </view>-->
  20. <view class="ss-m-b-8">快递单号:{{ state.info.logisticsNo }}</view>
  21. <view>快递公司:{{ state.info.logisticsName }}</view>
  22. </view>
  23. </view>
  24. <!-- 物流轨迹 -->
  25. <view class="log-content ss-m-20 ss-r-10">
  26. <view
  27. class="log-content-box ss-flex"
  28. v-for="(item, index) in state.tracks"
  29. :key="item.title"
  30. >
  31. <view class="log-icon ss-flex-col ss-col-center ss-m-r-20">
  32. <text class="cicon-title" />
  33. <view v-if="state.tracks.length - 1 !== index" class="line" />
  34. </view>
  35. <view class="log-content-msg">
  36. <!-- TODO 芋艿:优化点:展示状态 -->
  37. <!-- <view class="log-msg-title ss-m-b-20">-->
  38. <!-- {{ item.status_text }}-->
  39. <!-- </view>-->
  40. <view class="log-msg-desc ss-m-b-16">{{ item.content }}</view>
  41. <view class="log-msg-date ss-m-b-40">
  42. {{ sheep.$helper.timeFormat(item.time, 'yyyy-mm-dd hh:MM:ss') }}
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </s-layout>
  49. </template>
  50. <script setup>
  51. import sheep from '@/sheep';
  52. import { onLoad } from '@dcloudio/uni-app';
  53. import { computed, reactive } from 'vue';
  54. import OrderApi from '@/sheep/api/trade/order';
  55. const state = reactive({
  56. info: [],
  57. tracks: [],
  58. });
  59. const goodsImages = computed(() => {
  60. let array = [];
  61. if (state.info.items) {
  62. state.info.items.forEach((item) => {
  63. array.push({
  64. image: item.picUrl,
  65. });
  66. });
  67. }
  68. return array;
  69. });
  70. async function getExpressDetail(id) {
  71. const { data } = await OrderApi.getOrderExpressTrackList(id);
  72. state.tracks = data.reverse();
  73. }
  74. async function getOrderDetail(id) {
  75. const { data } = await OrderApi.getOrder(id)
  76. state.info = data;
  77. }
  78. onLoad((options) => {
  79. getExpressDetail(options.id);
  80. getOrderDetail(options.id);
  81. });
  82. </script>
  83. <style lang="scss" scoped>
  84. .swiper-box {
  85. width: 200rpx;
  86. height: 200rpx;
  87. }
  88. .log-card {
  89. border-top: 2rpx solid rgba(#dfdfdf, 0.5);
  90. padding: 20rpx;
  91. background: #fff;
  92. margin-bottom: 20rpx;
  93. .log-card-img {
  94. width: 200rpx;
  95. height: 200rpx;
  96. margin-right: 20rpx;
  97. }
  98. .log-card-msg {
  99. font-size: 28rpx;
  100. font-weight: 500;
  101. width: 490rpx;
  102. color: #333333;
  103. .warning-color {
  104. color: #999;
  105. }
  106. }
  107. }
  108. .log-content {
  109. padding: 34rpx 20rpx 0rpx 20rpx;
  110. background: #fff;
  111. .log-content-box {
  112. align-items: stretch;
  113. }
  114. .log-icon {
  115. height: inherit;
  116. .cicon-title {
  117. color: #ccc;
  118. font-size: 40rpx;
  119. }
  120. .activity-color {
  121. color: #f0c785;
  122. font-size: 40rpx;
  123. }
  124. .info-color {
  125. color: #ccc;
  126. font-size: 40rpx;
  127. }
  128. .line {
  129. width: 1px;
  130. height: 100%;
  131. background: #d8d8d8;
  132. }
  133. }
  134. .log-content-msg {
  135. .log-msg-title {
  136. font-size: 28rpx;
  137. font-weight: bold;
  138. color: #333333;
  139. }
  140. .log-msg-desc {
  141. font-size: 24rpx;
  142. font-weight: 400;
  143. color: #333333;
  144. line-height: 36rpx;
  145. }
  146. .log-msg-date {
  147. font-size: 24rpx;
  148. font-weight: 500;
  149. color: #999999;
  150. }
  151. }
  152. }
  153. </style>