logistics-details.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view class="wrap">
  3. <view class="item-content">
  4. <image src="../../../static/img-4.png" class="product-img" mode="aspectFill"></image>
  5. <view class="item-content-sidebar">
  6. <view class="product-item-row-between">
  7. <view class="product-item-name">
  8. 冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器
  9. </view>
  10. <view class="row-end">
  11. <text class="product-item-price">¥394.00</text>
  12. <text class="product-item-num">x <text>1</text></text>
  13. </view>
  14. </view>
  15. <view class="product-item-tag">
  16. <text>一盒15g*20袋</text>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="bottom">
  21. <view class="box-between">
  22. <view class="box-between-sidebar">
  23. <image src="../../../static/icon-14.png" mode=""></image>
  24. <text>圆通快递 YT5462737255128</text>
  25. </view>
  26. <button type="default" class="copy-btn" @tap="copy">复制</button>
  27. </view>
  28. <view class="timeLine">
  29. <view class="timeLine_li">
  30. <view class="time-row active">
  31. <text>下午</text>
  32. <text>13:50</text>
  33. </view>
  34. <view class="timeLine_row"><text class="active"></text></view>
  35. <view class="timeLine_box">
  36. <view class="con active">快件已到达 杭州滨州江区一部 </view>
  37. </view>
  38. </view>
  39. <view class="timeLine_li">
  40. <view class="time-row">
  41. <text>下午</text>
  42. <text>13:50</text>
  43. </view>
  44. <view class="timeLine_row"><text></text></view>
  45. <view class="timeLine_box">
  46. <view class="con">[杭州市]杭州萧山散仓 已发出</view>
  47. </view>
  48. </view>
  49. <view class="timeLine_li">
  50. <view class="time-row">
  51. <text>下午</text>
  52. <text>13:50</text>
  53. </view>
  54. <view class="timeLine_row"><text></text></view>
  55. <view class="timeLine_box">
  56. <view class="con">[杭州市]快件已到达 杭州萧山散仓</view>
  57. </view>
  58. </view>
  59. <view class="timeLine_li">
  60. <view class="time-row">
  61. <text>下午</text>
  62. <text>13:50</text>
  63. </view>
  64. <view class="timeLine_row"><text></text></view>
  65. <view class="timeLine_box">
  66. <view class="con">[杭州市]杭州运转中心已发出</view>
  67. </view>
  68. </view>
  69. <view class="timeLine_li">
  70. <view class="time-row">
  71. <text>下午</text>
  72. <text>13:50</text>
  73. </view>
  74. <view class="timeLine_row"><text></text></view>
  75. <view class="timeLine_box">
  76. <view class="con">到杭州是[杭州运转中心]</view>
  77. </view>
  78. </view>
  79. <view class="timeLine_li">
  80. <view class="time-row">
  81. <text>下午</text>
  82. <text>13:50</text>
  83. </view>
  84. <view class="timeLine_row"><text></text></view>
  85. <view class="timeLine_box">
  86. <view class="con">[杭州市]快件已到达 杭州运转中心</view>
  87. </view>
  88. </view>
  89. <view class="timeLine_li">
  90. <view class="time-row">
  91. <text>下午</text>
  92. <text>13:50</text>
  93. </view>
  94. <view class="timeLine_row"><text></text></view>
  95. <view class="timeLine_box">
  96. <view class="con">[杭州市]快件已到达 杭州运转中心</view>
  97. </view>
  98. </view>
  99. <view class="timeLine_li">
  100. <view class="time-row">
  101. <text>下午</text>
  102. <text>13:50</text>
  103. </view>
  104. <view class="timeLine_row"><text></text></view>
  105. <view class="timeLine_box">
  106. <view class="con">[杭州市]快件已到达 杭州运转中心</view>
  107. </view>
  108. </view>
  109. </view>
  110. </view>
  111. </view>
  112. </template>
  113. <script>
  114. export default {
  115. data() {
  116. return {
  117. }
  118. },
  119. methods: {
  120. //复制提示弹窗
  121. copy(){
  122. uni.showToast({
  123. title: '复制成功',
  124. duration: 2000
  125. });
  126. },
  127. }
  128. }
  129. </script>
  130. <style scoped lang="scss">
  131. @import "./logistics-details.css";
  132. </style>