express-detail.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <!-- 物流信息 -->
  2. <template>
  3. <view class="map-box">
  4. <!-- 商品卡片 -->
  5. <view class="oilStation-top">
  6. <view class="u-flex u-row-between express-card__head">
  7. <view class="u-flex">
  8. <view class="img-box">
  9. <image class="goods-image" :src="firstGoods.goods_image" mode="aspectFill"></image>
  10. <view class="shop-tag">{{ goodsList.length || 0 }}件商品</view>
  11. </view>
  12. <text class="express-status">{{ firstGoods.status_name || '' }}</text>
  13. </view>
  14. </view>
  15. <view class="express-sn u-flex u-col-center ">
  16. <text class="u-m-r-30">{{ expressDetail.express_name || '' }}
  17. {{ expressDetail.express_no || '' }}</text>
  18. <text class="u-iconfont uicon-file-text" style="color: #666;font-size: 32rpx;"
  19. @tap="copyCode(expressDetail.express_no)"></text>
  20. </view>
  21. </view>
  22. <!-- 物流时间轴 -->
  23. <view class="oilStation-bottom">
  24. <view class="u-p-y-30">
  25. <view v-if="exrpessLog.length" class="express-item u-flex u-col-center"
  26. v-for="(log, index) in exrpessLog" :key="log.id">
  27. <view class="item-left">
  28. <view class="day">{{ log.changedate.split(' ')[0]}}</view>
  29. <view class="time">{{ log.changedate.split(' ')[1] }}</view>
  30. </view>
  31. <view class="item-right">
  32. <image class="express-tag"
  33. :src="$IMG_URL + `/imgs/order/express${index == 0 ? log.status + '' + log.status : log.status}.png`"
  34. mode="aspectFill"></image>
  35. <view class="express-title">{{ log.status_name }}</view>
  36. <view class="express-detail">{{ log.content }}</view>
  37. </view>
  38. </view>
  39. <view v-if="!exrpessLog.length" class="no-log u-flex u-row-center u-col-center">暂无物流信息~</view>
  40. </view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. export default {
  46. data() {
  47. return {
  48. expressDetail: {}, //物流信息
  49. exrpessLog: [], //包裹轨迹
  50. firstGoods: {}, //商品列表
  51. goodsList: []
  52. };
  53. },
  54. computed: {},
  55. onLoad() {
  56. this.getExpressDetail();
  57. },
  58. methods: {
  59. // 复制物流码
  60. copyCode(code) {
  61. let that = this;
  62. uni.setClipboardData({
  63. data: code,
  64. success: () => {
  65. that.$u.toast('已复制到剪切板');
  66. }
  67. });
  68. },
  69. // 获取物流信息
  70. getExpressDetail() {
  71. let that = this;
  72. that.$http('order.expressDetail', {
  73. id: that.$Route.query.expressId,
  74. order_id: that.$Route.query.orderId
  75. }).then(res => {
  76. if (res.code === 1) {
  77. that.expressDetail = res.data;
  78. that.goodsList = res.data.item;
  79. that.exrpessLog = res.data.log;
  80. that.firstGoods = res.data.item[0];
  81. }
  82. });
  83. }
  84. }
  85. };
  86. </script>
  87. <style lang="scss">
  88. /* 物流卡片 */
  89. .oilStation-top {
  90. justify-content: center;
  91. align-items: center;
  92. flex-direction: column;
  93. background: #fff;
  94. margin: 20rpx;
  95. background: rgba(255, 255, 255, 1);
  96. box-shadow: 0 1rpx 18rpx 0 rgba(184, 184, 184, 0.55);
  97. border-radius: 20rpx;
  98. .express-card__head {
  99. padding: 20rpx;
  100. }
  101. .img-box {
  102. position: relative;
  103. width: 129rpx;
  104. height: 129rpx;
  105. border-radius: 20rpx;
  106. overflow: hidden;
  107. background: #ccc;
  108. .goods-image {
  109. width: 129rpx;
  110. height: 129rpx;
  111. }
  112. }
  113. .shop-tag {
  114. position: absolute;
  115. width: 129rpx;
  116. height: 30rpx;
  117. background: rgba(0, 0, 0, 0.6);
  118. font-size: 18rpx;
  119. font-weight: 400;
  120. color: rgba(255, 255, 255, 1);
  121. text-align: center;
  122. bottom: 0;
  123. z-index: 5;
  124. }
  125. .express-status {
  126. font-size: 30rpx;
  127. font-weight: 500;
  128. color: rgba(51, 51, 51, 1);
  129. margin-left: 20rpx;
  130. }
  131. .express-sn {
  132. width: 100%;
  133. height: 65rpx;
  134. background: rgba(250, 251, 255, 1);
  135. border-radius: 0 0 20rpx 20rpx;
  136. font-size: 24rpx;
  137. font-weight: 500;
  138. color: rgba(102, 102, 102, 1);
  139. padding: 0 30rpx;
  140. }
  141. }
  142. .oilStation-bottom {
  143. justify-content: space-between;
  144. align-items: center;
  145. flex-direction: row;
  146. background: #fff;
  147. width: 710rpx;
  148. margin: 0 20rpx 20rpx;
  149. border-radius: 20rpx;
  150. box-shadow: 0 1rpx 18rpx 0 rgba(184, 184, 184, 0.55);
  151. padding: 0 30rpx;
  152. }
  153. // 物流步骤条
  154. .no-log {
  155. width: 100%;
  156. height: 100rpx;
  157. color: #999;
  158. }
  159. .express-item {
  160. align-items: flex-start;
  161. .item-left {
  162. .day {
  163. font-size: 26rpx;
  164. white-space: nowrap;
  165. }
  166. .time {
  167. font-size: 20rpx;
  168. white-space: nowrap;
  169. }
  170. }
  171. .item-right {
  172. position: relative;
  173. padding-left: 54rpx;
  174. margin-left: 54rpx;
  175. border-left: 1rpx solid #e7e7e7;
  176. padding-bottom: 40rpx;
  177. .express-tag {
  178. width: 54rpx;
  179. height: 54rpx;
  180. position: absolute;
  181. left: -27rpx;
  182. top: 0;
  183. }
  184. .express-title {
  185. font-size: 28rpx;
  186. font-weight: 500;
  187. color: rgba(51, 51, 51, 1);
  188. margin-bottom: 10rpx;
  189. }
  190. .express-detail {
  191. width: 400rpx;
  192. font-size: 24rpx;
  193. font-weight: 500;
  194. color: rgba(51, 51, 51, 1);
  195. }
  196. }
  197. }
  198. </style>