list.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <!-- 拼包列表 -->
  3. <view class="back">
  4. <view class="label">
  5. <view class="" style="display: flex;">
  6. <view class="left flexc">
  7. <text class="bourn">目的地</text>
  8. <view class="addres">澳大利亚</view>
  9. </view>
  10. <view class="" style="flex: 1;margin-left: 20rpx;">
  11. <view class="u-flex u-row-between">
  12. <view class="">
  13. <text class='bigtitle'>特殊包裹</text>
  14. <text style="margin: 0 8rpx;">|</text>
  15. <text class='bigtitle'>海运散货</text>
  16. </view>
  17. <view class="mon">
  18. <text class="timeb">单价</text>
  19. <text>¥</text>
  20. <text style="font-size: 32rpx;">28</text>
  21. <text>.00</text>
  22. </view>
  23. </view>
  24. <view class="" style="margin-top: 34rpx;">
  25. <u-line-progress activeColor='rgba(255, 21, 21, 1)' :percentage="percentage" height="6"
  26. :showText="false"></u-line-progress>
  27. </view>
  28. <view class="u-flex u-row-between" style="margin-top: 20rpx;">
  29. <view class="u-flex">
  30. <view class="">
  31. <text class='timeb'>已拼 </text>
  32. <text class='timeb' style='color:rgba(255, 21, 21, 1)'>200kg</text>
  33. </view>
  34. <text style="margin: 0 8rpx;">|</text>
  35. <view class="">
  36. <text class='timeb'>剩余重量 </text>
  37. <text class='timeb' style='color:rgba(255, 21, 21, 1)'>400kg</text>
  38. </view>
  39. </view>
  40. <view class="">
  41. <text class="timeb">进度50%</text>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="u-flex u-row-between" style="margin-top: 32rpx;">
  47. <text class="timea">开始时间:2023-12-31/截止时间:2023-12-31</text>
  48. <view class="pinb">去拼包</view>
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. export default {
  55. data() {
  56. return {
  57. percentage: 50, //进度条
  58. };
  59. }
  60. }
  61. </script>
  62. <style lang="scss" scoped>
  63. .flexc {
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: center;
  67. align-items: center;
  68. }
  69. .back{
  70. padding: 20rpx 24rpx;
  71. box-sizing: border-box;
  72. }
  73. .pinb {
  74. width: 148rpx;
  75. height: 64rpx;
  76. background: #FF1515;
  77. border-radius: 42rpx;
  78. font-family: PingFangSC, PingFang SC;
  79. font-weight: 500;
  80. font-size: 28rpx;
  81. color: #FFFFFF;
  82. line-height: 64rpx;
  83. text-align: center;
  84. font-style: normal;
  85. }
  86. .mon {
  87. font-family: HarmonyOS_Sans_Medium;
  88. font-size: 20rpx;
  89. color: #F83224;
  90. line-height: 26rpx;
  91. text-align: left;
  92. font-style: normal;
  93. }
  94. .bigtitle {
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: 600;
  97. font-size: 28rpx;
  98. color: #222222;
  99. line-height: 40rpx;
  100. text-align: left;
  101. font-style: normal;
  102. }
  103. .timeb {
  104. font-family: PingFangSC, PingFang SC;
  105. font-weight: 400;
  106. font-size: 22rpx;
  107. color: #666666;
  108. line-height: 32rpx;
  109. text-align: left;
  110. font-style: normal;
  111. }
  112. .timea {
  113. font-family: PingFangSC, PingFang SC;
  114. font-weight: 400;
  115. font-size: 22rpx;
  116. color: #555555;
  117. line-height: 32rpx;
  118. text-align: left;
  119. font-style: normal;
  120. }
  121. .label {
  122. margin-top: 20rpx;
  123. width: 702rpx;
  124. height: 288rpx;
  125. background: #FFFFFF;
  126. border-radius: 16rpx;
  127. padding: 32rpx 20rpx;
  128. box-sizing: border-box;
  129. .left {
  130. width: 144rpx;
  131. height: 144rpx;
  132. background: #F5F5F5;
  133. border-radius: 8rpx;
  134. .bourn {
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 400;
  137. font-size: 20rpx;
  138. color: #222222;
  139. line-height: 28rpx;
  140. text-align: left;
  141. font-style: normal;
  142. }
  143. .addres {
  144. font-family: PingFangSC, PingFang SC;
  145. font-weight: 500;
  146. font-size: 28rpx;
  147. color: #222222;
  148. line-height: 40rpx;
  149. text-align: left;
  150. font-style: normal;
  151. }
  152. }
  153. }
  154. </style>