logisticsProgress.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <template>
  2. <view class="page">
  3. <view class="top-detail">
  4. <view class="title">
  5. 发往仓库
  6. </view>
  7. <image class="arrow" src="../../static/mine/339.png" mode=""></image>
  8. <view class="title">
  9. 仓库打包
  10. </view>
  11. <image class="arrow" src="../../static/mine/340.png" mode=""></image>
  12. <view class="title">
  13. 洛杉矶
  14. </view>
  15. </view>
  16. <view class="logistics">
  17. <view class="logistics-detail">
  18. <view class="">
  19. {{"顺丰快递"+"&nbsp;"+"|"+"&nbsp"+"订单号:"}}
  20. <text>JDV21093105892</text>
  21. </view>
  22. <view class="phone">
  23. <text @click="cope('JDV21093105892')">复制</text>
  24. {{"&nbsp;"+"|"+"&nbsp"}}
  25. <text @click="makeCall">打电话</text>
  26. </view>
  27. </view>
  28. <view class="logistics-information">
  29. <view v-for="(item,index) in logisticsList" :key="index" class="information">
  30. <view class="basis">
  31. <view class="dot" v-if="item.title" :style="item.status?'background-color:#f83224':''">
  32. </view>
  33. <view class="dot-1" v-else :style="item.status?'background-color:#f83224':''">
  34. </view>
  35. <view class="name" :style="item.status?'color:#f83224':''">
  36. {{item.title}}
  37. </view>
  38. <view class="time" :style="item.status?'color:#f83224':''">
  39. {{item.time}}
  40. </view>
  41. </view>
  42. <view class="shu" v-show="index < logisticsList.length-1"> </view>
  43. <view class="does" :id="'does'+index" :style="item.status?'color:#333':''">
  44. {{ item.does }}
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. logisticsList: [{
  56. title: "已签收",
  57. time: "10:11",
  58. status: true,
  59. does: "您的快件已暂存至浦口东方万汇城北区2号楼超市店菜鸟驿站,请凭取件码及时领取。"
  60. }, {
  61. title: "派送中",
  62. time: "10:11",
  63. status: false,
  64. does: "临沂市配送员【叶景瑞】 187626516732 正为您派送,感谢您的耐心等待"
  65. }, {
  66. title: "",
  67. time: "10:11",
  68. status: false,
  69. does: "临沂市配送员【叶景瑞】 187626516732 正为您派送,感谢您的耐心等待"
  70. },
  71. {
  72. title: "运输中",
  73. time: "10:11",
  74. status: false,
  75. does: "快递离开******"
  76. }
  77. ]
  78. }
  79. },
  80. computed: {},
  81. methods: {
  82. cope(str) {
  83. uni.setClipboardData({
  84. data: str,
  85. success() {
  86. uni.showToast({
  87. title: "复制成功",
  88. icon: "none"
  89. })
  90. }
  91. })
  92. },
  93. makeCall() {
  94. uni.authorize({
  95. scope: 'scope.makePhoneCall',
  96. success: () => {
  97. uni.makePhoneCall({
  98. phoneNumber: '手机号码',
  99. success: () => {
  100. console.log('拨打电话成功!');
  101. },
  102. fail: () => {
  103. console.error('拨打电话失败!');
  104. }
  105. });
  106. },
  107. fail: () => {
  108. console.error('授权失败,请允许拨打电话权限!');
  109. }
  110. });
  111. }
  112. },
  113. created() {
  114. uni.setNavigationBarTitle({
  115. title: "物流进度"
  116. })
  117. }
  118. }
  119. </script>
  120. <style scoped lang="scss">
  121. .page {
  122. padding: 20rpx 24rpx;
  123. .top-detail {
  124. display: flex;
  125. justify-content: space-around;
  126. align-items: center;
  127. height: 144rpx;
  128. background: linear-gradient(180deg, #F6E1DE 0%, #EFEFEF 100%);
  129. border-radius: 16rpx 16rpx 0 0;
  130. .title {
  131. color: rgba(34, 34, 34, .6);
  132. font-size: 32rpx;
  133. }
  134. .arrow {
  135. width: 98rpx;
  136. height: 8rpx;
  137. }
  138. }
  139. .logistics {
  140. background-color: #fff;
  141. border-radius: 16rpx;
  142. padding: 0 20rpx;
  143. position: relative;
  144. top: -20rpx;
  145. .logistics-detail {
  146. display: flex;
  147. justify-content: space-between;
  148. font-size: 26rpx;
  149. color: #333;
  150. height: 104rpx;
  151. align-items: center;
  152. border-bottom: 2rpx solid rgba(151, 151, 151, .2);
  153. }
  154. .logistics-information {
  155. padding: 20rpx 0;
  156. .information {
  157. position: relative;
  158. }
  159. }
  160. .basis {
  161. display: flex;
  162. align-items: center;
  163. .dot {
  164. border-radius: 50%;
  165. background-color: rgba(227, 227, 227, 1);
  166. width: 18rpx;
  167. height: 18rpx;
  168. margin-right: 20rpx;
  169. z-index: 100;
  170. }
  171. .dot-1 {
  172. border-radius: 50%;
  173. background-color: rgba(227, 227, 227, 1);
  174. width: 10rpx;
  175. height: 10rpx;
  176. margin-right: 20rpx;
  177. margin-left: 4rpx;
  178. z-index: 100;
  179. }
  180. .name {
  181. font-size: 28rpx;
  182. margin-right: 20rpx;
  183. }
  184. .time {
  185. font-size: 24rpx;
  186. }
  187. }
  188. .shu {
  189. position: absolute;
  190. height: 126rpx;
  191. width: 2rpx;
  192. background-color: rgba(151, 151, 151, .6);
  193. left: 8rpx;
  194. top: 22rpx;
  195. }
  196. .does {
  197. font-size: 24rpx;
  198. color: rgba(119, 119, 119, .8);
  199. margin: 8rpx 0 28rpx 36rpx;
  200. }
  201. }
  202. }
  203. </style>