common-logistics.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <view class="bg-white">
  3. <view class="common-logistics">
  4. <view class="logistic-item" v-for="(item,index) in logisticsData" :key="index">
  5. <view class="total-wrap" :style="{marginTop: item.isFirstNode ? '22rpx' : '6rpx'}">
  6. <view class="item-container">
  7. <view class="item-container-left flex flex-direction align-center"
  8. :class="[index == 0 ? 'text-1A1A1A' : 'text-808080']">
  9. <text class="text-df">{{item.time | dateTommdd}}</text>
  10. <text class="text-sm">{{item.time | dateToHHmmss}}</text>
  11. </view>
  12. <view class="item-container-center">
  13. <view class="tag-container">
  14. <image v-if="item.isFirstNode && String(item.state) != 'null'" :src="nodeIconUrl(item.state, index)" mode="scaleToFill"></image>
  15. <view v-else class="item-tag-container">
  16. <image class="item-tag" :src="[index == 0 ? '/static/mine/logistics/active-line-state.png' : '/static/mine/logistics/line-state.png']" mode="scaleToFill"></image>
  17. </view>
  18. </view>
  19. <view class="line-container"
  20. :style="{height: item.isFirstNode ? '145rpx' : '88rpx' , paddingTop: item.isFirstNode ? '22rpx': '8rpx'}">
  21. <view v-if="index !== logisticsData.length - 1" class="line" :style="{height: item.isFirstNode ? '120rpx':'80rpx'}"></view>
  22. </view>
  23. </view>
  24. <view class="item-container-right" :style="{paddingTop: item.isFirstNode?'0':'8rpx'}">
  25. <view v-if="item.isFirstNode" class="item-title text-dm text-bold" :class="[index == 0 ? 'text-1A1A1A' : 'text-808080']">{{item.state | stateFilter}}</view>
  26. <view class="item-desc text-dm" :class="[index == 0 ? 'text-1A1A1A' : 'text-999999']" :style="{marginTop: item.isFirstNode ? '10rpx' : '0'}">{{item.context}}</view>
  27. <!-- <view class="item-time">{{item.createTime}}</view> -->
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. props: {
  38. logisticsData: {
  39. type: [Object, Array]
  40. }
  41. },
  42. filters: {
  43. stateFilter(val) {
  44. const stateMap = {
  45. 0: '在途',
  46. 1: '揽收',
  47. 2: '疑难',
  48. 3: '签收',
  49. 4: '退签',
  50. 5: '派件',
  51. 6: '退回',
  52. }
  53. return stateMap[val]
  54. },
  55. },
  56. computed: {
  57. nodeIconUrl() {
  58. return function(data, isFirstIndex) {
  59. // 物流状:0在途,1揽收,2疑难,3签收,4退签,5派件,6退回
  60. if (data == 0) {
  61. return isFirstIndex === 0 ? '/static/icon/select_1.png' : '/static/icon/select_1.png'
  62. } else if (data == 1) {
  63. return isFirstIndex === 0 ? '/static/icon/select_1.png' : '/static/icon/select_1.png'
  64. } else if (data == 2) {
  65. return isFirstIndex === 0 ? '/static/icon/select_1.png' : '/static/icon/select_1.png'
  66. } else if (data == 3) {
  67. return isFirstIndex === 0 ? '/static/icon/select_1.png' : '/static/icon/select_1.png'
  68. } else if (data == 4) {
  69. return isFirstIndex === 0 ? '/static/icon/select_1.png' : '/static/icon/select_1.png'
  70. } else if (data == 5) {
  71. return isFirstIndex === 0 ? '/static/icon/select_1.png' : '/static/icon/select_1.png'
  72. } else if (data == 6) {
  73. return isFirstIndex === 0 ? '/static/icon/select_1.png' : '/static/icon/select_1.png'
  74. }
  75. }
  76. }
  77. }
  78. }
  79. </script>
  80. <style lang="scss" scoped>
  81. @import url("@/components/logistics/main.css");
  82. .common-logistics {
  83. height: auto;
  84. box-sizing: border-box;
  85. background: #FFFFFF;
  86. }
  87. .item-container {
  88. width: 100%;
  89. height: auto;
  90. display: flex;
  91. .item-container-left {
  92. width: 120rpx;
  93. max-width: 120rpx;
  94. }
  95. .item-container-center {
  96. width: 44rpx;
  97. height: auto;
  98. .tag-container {
  99. width: 44rpx;
  100. height: 44rpx;
  101. image {
  102. width: 44rpx;
  103. height: 44rpx;
  104. border-radius: 50%;
  105. }
  106. .item-tag-container {
  107. width: 44rpx;
  108. height: 44rpx;
  109. display: flex;
  110. justify-content: center;
  111. align-items: center;
  112. .item-tag {
  113. width: 14rpx;
  114. height: 14rpx;
  115. border-radius: 50%;
  116. }
  117. }
  118. }
  119. .line-container {
  120. box-sizing: border-box;
  121. width: 44rpx;
  122. display: flex;
  123. align-items: center;
  124. justify-content: center;
  125. .line {
  126. width: 2rpx;
  127. background-color: #dcdcdc;
  128. }
  129. }
  130. }
  131. .item-container-right {
  132. width: 510rpx;
  133. max-width: 510rpx;
  134. box-sizing: border-box;
  135. padding: 0 10rpx 0 24rpx;
  136. .item-title {
  137. width: 100%;
  138. height: 40rpx;
  139. line-height: 44rpx;
  140. color: #222;
  141. font-size: 28rpx;
  142. }
  143. .item-desc {
  144. margin-top: 16rpx;
  145. width: 100%;
  146. min-height: 30rpx;
  147. line-height: 30rpx;
  148. word-wrap: break-word;
  149. word-break: normal;
  150. }
  151. .item-time {
  152. margin-top: 12rpx;
  153. width: 100%;
  154. height: 34rpx;
  155. line-height: 34rpx;
  156. font-size: 24rpx;
  157. }
  158. }
  159. }
  160. .line-state {
  161. width: 20rpx;
  162. height: 20rpx;
  163. border-radius: 50%;
  164. }
  165. .take-space {
  166. width: 100%;
  167. height: 80rpx;
  168. }
  169. .text-1A1A1A {
  170. color: #1A1A1A;
  171. }
  172. .text-999999 {
  173. color: #999999;
  174. }
  175. .text-808080 {
  176. color: #808080;
  177. }
  178. </style>