myPackage.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <!-- 我的包裹 -->
  3. <view>
  4. <view class="top">
  5. <view class="inputbg u-flex">
  6. <u-icon name="search" color="#777777" size="32"></u-icon>
  7. <input type="text" placeholder="请输入订单编号搜索" style="flex: 1;margin-left: 12rpx;" />
  8. </view>
  9. <!-- rgba(252, 97, 74, 1) -->
  10. <view class="">
  11. <u-tabs :scrollable='false' :list="list1" @click="click"></u-tabs>
  12. </view>
  13. </view>
  14. <view class="content">
  15. <view class="kg u-flex">
  16. <image src="static/images/kg.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  17. <text style="margin-left: 20rpx;">当前页面加载的订单总重量300kg</text>
  18. </view>
  19. <view class="info" v-if="current==0">
  20. <view class="u-flex u-row-between">
  21. <view class="u-flex ">
  22. <!-- <view class="tab">平台自购</view> -->
  23. <view class="tab" style="background: rgba(255, 103, 0, 1);">自寄</view>
  24. <text class="order">订单编号:487322109310589</text>
  25. </view>
  26. <text class="order" style="color:rgba(248, 50, 36, 1) ;">待平台收货</text>
  27. </view>
  28. <view class="u-flex u-row-around" style="margin-top: 40rpx;">
  29. <view class="flexc">
  30. <view class="entrepotname">东莞仓库</view>
  31. <view class="adda">陈盼盼</view>
  32. </view>
  33. <image src="/pageB/static/images/arrows.png" style="width: 130rpx;height: 10rpx;" mode=""></image>
  34. <view class="flexc">
  35. <view class="entrepotname">澳大利亚</view>
  36. <view class="adda">Curtis Morris</view>
  37. </view>
  38. </view>
  39. <view class="" style="margin-top: 36rpx;text-align: right;">
  40. <text class="sum">合计</text>
  41. <text class="money" style="">¥</text>
  42. <text class="money" style="font-size: 36rpx;">1280</text>
  43. <text class="money">.00</text>
  44. </view>
  45. <view class="content-bottom u-flex u-row-between">
  46. <text class="weight">包裹重量:45kg</text>
  47. <view class="u-flex">
  48. <!-- <view class="btn">冻结</view>
  49. <view class="btn">查看详情</view> -->
  50. <!-- <view class="btn">恢复</view> -->
  51. <view class="btn"
  52. style="background-color:rgba(248, 50, 36, 1) ;color: #fff;border: 2rpx solid rgba(248, 50, 36, 0);">
  53. 立即付款</view>
  54. <view class="btn"
  55. style="background-color:rgba(248, 50, 36, 1) ;color: #fff;border: 2rpx solid rgba(248, 50, 36, 0);">
  56. 去寄件</view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. export default {
  65. data() {
  66. return {
  67. current: 0, //tab切换
  68. list1: [{
  69. name: '发往中转点 4',
  70. }, {
  71. name: '中转已签收 12',
  72. }, {
  73. name: '正发往海外 2'
  74. }]
  75. };
  76. },
  77. onShow() {
  78. },
  79. methods: {
  80. click(item) {
  81. console.log('item', item);
  82. this.current = item.index
  83. }
  84. },
  85. mounted() {
  86. }
  87. }
  88. </script>
  89. <style lang="scss" scoped>
  90. .flexc {
  91. display: flex;
  92. flex-direction: column;
  93. justify-content: center;
  94. align-items: center;
  95. }
  96. .content {
  97. padding: 20rpx 24rpx;
  98. box-sizing: border-box;
  99. .content-bottom {
  100. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  101. margin-top: 30rpx;
  102. padding-top: 30rpx;
  103. .weight {
  104. font-family: PingFangSC, PingFang SC;
  105. font-weight: 400;
  106. font-size: 26rpx;
  107. color: #444444;
  108. line-height: 36rpx;
  109. text-align: left;
  110. font-style: normal;
  111. }
  112. .btn {
  113. // width: 132rpx;
  114. height: 68rpx;
  115. border-radius: 34rpx;
  116. border: 1rpx solid rgba(151, 151, 151, 0.7);
  117. display: inline;
  118. padding: 0 38rpx;
  119. box-sizing: border-box;
  120. font-family: PingFangSC, PingFang SC;
  121. font-weight: 400;
  122. font-size: 28rpx;
  123. color: #333333;
  124. line-height: 68rpx;
  125. text-align: center;
  126. font-style: normal;
  127. margin-left: 20rpx;
  128. }
  129. }
  130. .sum {
  131. font-family: PingFangSC, PingFang SC;
  132. font-weight: 400;
  133. font-size: 24rpx;
  134. color: #333333;
  135. line-height: 34rpx;
  136. text-align: left;
  137. font-style: normal;
  138. margin-right: 8rpx;
  139. }
  140. .money {
  141. font-family: JDZhengHT, JDZhengHT;
  142. font-weight: 400;
  143. // font-size: 26rpx;
  144. color: #F83224;
  145. line-height: 32rpx;
  146. text-align: left;
  147. font-style: normal;
  148. }
  149. .adda {
  150. margin-top: 8rpx;
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 400;
  153. font-size: 24rpx;
  154. color: #222222;
  155. line-height: 34rpx;
  156. text-align: right;
  157. font-style: normal;
  158. }
  159. .entrepotname {
  160. font-family: PingFangSC, PingFang SC;
  161. font-weight: 500;
  162. font-size: 32rpx;
  163. color: #222222;
  164. line-height: 44rpx;
  165. text-align: left;
  166. font-style: normal;
  167. }
  168. .tab {
  169. // width: 96rpx;
  170. height: 36rpx;
  171. background: #FF1515;
  172. border-radius: 4rpx;
  173. font-family: PingFangSC, PingFang SC;
  174. font-weight: 400;
  175. font-size: 20rpx;
  176. color: #FFFFFF;
  177. line-height: 36rpx;
  178. text-align: center;
  179. font-style: normal;
  180. margin-right: 8rpx;
  181. padding: 0 8rpx;
  182. }
  183. .order {
  184. font-family: SFPro, SFPro;
  185. font-weight: 400;
  186. font-size: 26rpx;
  187. color: #333333;
  188. line-height: 30rpx;
  189. text-align: left;
  190. font-style: normal;
  191. }
  192. .info {
  193. width: 702rpx;
  194. // height: 366rpx;
  195. background: #FFFFFF;
  196. border-radius: 16rpx;
  197. padding: 28rpx 20rpx;
  198. box-sizing: border-box;
  199. margin-top: 20rpx;
  200. }
  201. .kg {
  202. width: 702rpx;
  203. // height: 68rpx;
  204. background: #FBE8E6;
  205. border-radius: 10rpx;
  206. padding: 18rpx 26rpx;
  207. box-sizing: border-box;
  208. font-family: PingFangSC, PingFang SC;
  209. font-weight: 400;
  210. font-size: 24rpx;
  211. color: #F83224;
  212. line-height: 34rpx;
  213. text-align: left;
  214. font-style: normal;
  215. }
  216. }
  217. .top {
  218. padding: 20rpx 24rpx;
  219. box-sizing: border-box;
  220. background-color: #fff;
  221. .inputbg {
  222. width: 694rpx;
  223. height: 72rpx;
  224. background: #F4F4F4;
  225. border-radius: 38rpx;
  226. padding: 0 38rpx;
  227. box-sizing: border-box;
  228. }
  229. }
  230. </style>