list.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <template>
  2. <!-- 拼包列表 -->
  3. <view class="back">
  4. <view class="label" v-for="(item,idx) in expressList" :key="idx">
  5. <view class="" style="display: flex;">
  6. <view class="left flexc">
  7. <text class="bourn">{{i18n.destination}}</text>
  8. <view class="addres">{{item.containerBase.country_name}}</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'>{{item.type_name}}</text>
  14. <text style="margin: 0 8rpx;">|</text>
  15. <text class='bigtitle'>{{item.transportType.name}}</text>
  16. </view>
  17. <view class="mon">
  18. <text class="timeb">{{i18n.price}}</text>
  19. <text>¥</text>
  20. <text style="font-size: 32rpx;">{{item.price.slice(0,-3)}}</text>
  21. <text>{{item.price.slice(-3)}}</text>
  22. </view>
  23. </view>
  24. <view class="" style="margin-top: 34rpx;">
  25. <u-line-progress activeColor='rgba(255, 21, 21, 1)' :percentage="item.progress" 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'>{{i18n.already}} </text>
  32. <text class='timeb' style='color:rgba(255, 21, 21, 1)'>{{item.used_weight}}kg</text>
  33. </view>
  34. <text style="margin: 0 8rpx;">|</text>
  35. <view class="">
  36. <text class='timeb'>{{i18n.residue}} </text>
  37. <text class='timeb' style='color:rgba(255, 21, 21, 1)'>{{item.residual_weight}}kg</text>
  38. </view>
  39. </view>
  40. <view class="">
  41. <text class="timeb">{{i18n.plan}}{{item.progress}}%</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">{{i18n.start}}:{{item.begin_date}}/{{i18n.cut}}:{{item.end_date}}</text>
  48. <view class="pinb" @click="toaccount(item)">{{i18n.goparceling}}</view>
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. export default {
  55. data() {
  56. return {
  57. expressList: []
  58. };
  59. },
  60. onShow() {
  61. this.getexpress()
  62. },
  63. computed: {
  64. i18n() {
  65. return this.$t('index')
  66. }
  67. },
  68. methods: {
  69. //拼包列表
  70. getexpress() {
  71. uni.$u.http.get('/api/express-group-package', {
  72. params: {
  73. is_page: 0,
  74. transport_type_id: "",
  75. container_base_id: '',
  76. type: '',
  77. }
  78. }).then((res) => {
  79. this.expressList = res
  80. }).catch(() => {
  81. })
  82. },
  83. //拼包快递
  84. toaccount(info) {
  85. uni.navigateTo({
  86. url: '/pageB/ParcelExpress?expressinfo=' + encodeURIComponent(JSON.stringify(info))
  87. })
  88. },
  89. }
  90. }
  91. </script>
  92. <style lang="scss" scoped>
  93. .flexc {
  94. display: flex;
  95. flex-direction: column;
  96. justify-content: center;
  97. align-items: center;
  98. }
  99. .back {
  100. padding: 0rpx 24rpx 20rpx;
  101. box-sizing: border-box;
  102. }
  103. .pinb {
  104. width: 148rpx;
  105. height: 64rpx;
  106. background: #FF1515;
  107. border-radius: 42rpx;
  108. font-family: PingFangSC, PingFang SC;
  109. font-weight: 500;
  110. font-size: 28rpx;
  111. color: #FFFFFF;
  112. line-height: 64rpx;
  113. text-align: center;
  114. font-style: normal;
  115. }
  116. .mon {
  117. font-family: HarmonyOS_Sans_Medium;
  118. font-size: 20rpx;
  119. color: #F83224;
  120. line-height: 26rpx;
  121. text-align: left;
  122. font-style: normal;
  123. font-weight: 600;
  124. }
  125. .bigtitle {
  126. font-family: PingFangSC, PingFang SC;
  127. font-weight: 600;
  128. font-size: 28rpx;
  129. color: #222222;
  130. line-height: 40rpx;
  131. text-align: left;
  132. font-style: normal;
  133. }
  134. .timeb {
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 400;
  137. font-size: 22rpx;
  138. color: #666666;
  139. line-height: 32rpx;
  140. text-align: left;
  141. font-style: normal;
  142. }
  143. .timea {
  144. font-family: PingFangSC, PingFang SC;
  145. font-weight: 400;
  146. font-size: 22rpx;
  147. color: #555555;
  148. line-height: 32rpx;
  149. text-align: left;
  150. font-style: normal;
  151. }
  152. .label {
  153. margin-top: 20rpx;
  154. width: 702rpx;
  155. height: 288rpx;
  156. background: #FFFFFF;
  157. border-radius: 16rpx;
  158. padding: 32rpx 20rpx;
  159. box-sizing: border-box;
  160. .left {
  161. width: 144rpx;
  162. height: 144rpx;
  163. background: #F5F5F5;
  164. border-radius: 8rpx;
  165. .bourn {
  166. font-family: PingFangSC, PingFang SC;
  167. font-weight: 400;
  168. font-size: 20rpx;
  169. color: #222222;
  170. line-height: 28rpx;
  171. text-align: left;
  172. font-style: normal;
  173. }
  174. .addres {
  175. font-family: PingFangSC, PingFang SC;
  176. font-weight: 500;
  177. font-size: 28rpx;
  178. color: #222222;
  179. line-height: 40rpx;
  180. text-align: left;
  181. font-style: normal;
  182. }
  183. }
  184. }
  185. </style>