log.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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. <view class="image-container">
  11. <image class="log-card-img" mode="aspectFill" :src="sheep.$url.static(item.image)" />
  12. </view>
  13. </swiper-item>
  14. </swiper>
  15. </uni-swiper-dot>
  16. <view class="log-card-msg">
  17. <!-- TODO 非繁人:优化点:展示状态 -->
  18. <!-- <view class="ss-flex ss-m-b-8">-->
  19. <!-- <view>物流状态:</view>-->
  20. <!-- <view class="warning-color">{{ state.info.status_text }}</view>-->
  21. <!-- </view>-->
  22. <view class="ss-m-b-16 TrackingNumber">快递单号:{{ state.info.logisticsNo }}</view>
  23. <view class="ss-m-b-16">快递公司:{{ state.info.logisticsName }}</view>
  24. <view>
  25. 发货时间:{{ sheep.$helper.timeFormat(state.info.deliveryTime, 'yyyy-mm-dd hh:MM') }}</view>
  26. </view>
  27. </view>
  28. <!-- 物流轨迹 -->
  29. <view class="log-content ss-m-20 ss-r-10">
  30. <view class="log-content-box ss-flex" v-for="(item, index) in state.tracks" :key="item.title">
  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 {
  53. onLoad
  54. } from '@dcloudio/uni-app';
  55. import {
  56. computed,
  57. reactive
  58. } from 'vue';
  59. import OrderApi from '@/sheep/api/trade/order';
  60. const state = reactive({
  61. info: [],
  62. tracks: [],
  63. });
  64. const goodsImages = computed(() => {
  65. let array = [];
  66. if (state.info.items) {
  67. state.info.items.forEach((item) => {
  68. array.push({
  69. image: item.picUrl,
  70. });
  71. });
  72. }
  73. return array;
  74. });
  75. async function getExpressDetail(id) {
  76. const {
  77. data
  78. } = await OrderApi.getOrderExpressTrackList(id);
  79. state.tracks = data.reverse();
  80. }
  81. async function getOrderDetail(id) {
  82. const {
  83. data
  84. } = await OrderApi.getOrder(id)
  85. state.info = data;
  86. }
  87. onLoad((options) => {
  88. getExpressDetail(options.id);
  89. getOrderDetail(options.id);
  90. });
  91. </script>
  92. <style lang="scss" scoped>
  93. // .swiper-box {
  94. // width: 200rpx;
  95. // height: 200rpx;
  96. // }
  97. .log-card {
  98. border-top: 2rpx solid rgba(#dfdfdf, 0.5);
  99. padding: 20rpx;
  100. background: #fff;
  101. margin-bottom: 20rpx;
  102. display: flex;
  103. justify-content: stretch;
  104. .uni-swiper__warp {
  105. border-radius: 8rpx;
  106. margin-right: 16rpx;
  107. height: 156rpx;
  108. border: 2rpx solid #f6f6f6;
  109. }
  110. .image-container {
  111. width: 100%;
  112. /* 容器宽度100% */
  113. position: relative;
  114. /* 相对定位 */
  115. overflow: hidden;
  116. /* 隐藏超出部分 */
  117. padding-top: 56.25%;
  118. /* 9 / 16 = 0.5625, 即56.25% */
  119. }
  120. .log-card-img {
  121. position: absolute;
  122. /* 绝对定位 */
  123. top: 0;
  124. left: 0;
  125. width: 100%;
  126. /* 图片宽度100% */
  127. height: 100%;
  128. /* 高度自动调整 */
  129. object-fit: cover;
  130. /* 覆盖填充方式,保持宽高比 */
  131. }
  132. uni-image>div {
  133. background-size: contain;
  134. background-position: center;
  135. }
  136. uni-swiper-item{
  137. display: flex;
  138. align-items: center;
  139. }
  140. .log-card-msg {
  141. // flex:2;
  142. font-size: 28rpx;
  143. font-weight: 500;
  144. color: #333333;
  145. width: calc(100% - 200rpx);
  146. .TrackingNumber {
  147. width: 100%;
  148. overflow: hidden;
  149. text-overflow: ellipsis;
  150. display: -webkit-box;
  151. -webkit-line-clamp: 1;
  152. -webkit-box-orient: vertical;
  153. }
  154. .warning-color {
  155. color: #999;
  156. }
  157. }
  158. }
  159. .log-content {
  160. padding: 34rpx 20rpx 0rpx 20rpx;
  161. background: #fff;
  162. .log-content-box {
  163. align-items: stretch;
  164. }
  165. .log-icon {
  166. height: inherit;
  167. .cicon-title {
  168. color: #ccc;
  169. font-size: 40rpx;
  170. }
  171. .activity-color {
  172. color: #f0c785;
  173. font-size: 40rpx;
  174. }
  175. .info-color {
  176. color: #ccc;
  177. font-size: 40rpx;
  178. }
  179. .line {
  180. width: 1px;
  181. height: 100%;
  182. background: #d8d8d8;
  183. }
  184. }
  185. .log-content-msg {
  186. .log-msg-title {
  187. font-size: 28rpx;
  188. font-weight: bold;
  189. color: #333333;
  190. }
  191. .log-msg-desc {
  192. font-size: 24rpx;
  193. font-weight: 400;
  194. color: #333333;
  195. line-height: 36rpx;
  196. }
  197. .log-msg-date {
  198. font-size: 24rpx;
  199. font-weight: 500;
  200. color: #999999;
  201. }
  202. }
  203. }
  204. </style>