myPackage.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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="i18n.orderSearch" style="flex: 1;margin-left: 12rpx;" />
  8. </view>
  9. <!-- rgba(252, 97, 74, 1) -->
  10. <view class="">
  11. <u-tabs :scrollable='false' :current='current' :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;">{{i18n.orderWeight}}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">{{i18n.purchase}}</view> -->
  23. <view class="tab" style="background: rgba(255, 103, 0, 1);">{{i18n.selfPost}}</view>
  24. <text class="order">{{i18n.OrderNumber}}:487322109310589</text>
  25. </view>
  26. <text class="order" style="color:rgba(248, 50, 36, 1) ;">{{i18n.receiveGoods}}</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">{{i18n.total}}</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">{{i18n.Parcelweight}}:45kg</text>
  47. <view class="u-flex">
  48. <view class="btn">{{i18n.Frozen}}</view>
  49. <view class="btn">{{i18n.details}}</view>
  50. <!-- <view class="btn">{{i18n.recover}}</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. {{i18n.payment}}
  54. </view>
  55. <view class="btn"
  56. style="background-color:rgba(248, 50, 36, 1) ;color: #fff;border: 2rpx solid rgba(248, 50, 36, 0);">
  57. {{i18n.mail}}
  58. </view> -->
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. </template>
  65. <script>
  66. export default {
  67. data() {
  68. return {
  69. current: 0, //tab切换
  70. list1: [],
  71. status: '', //状态
  72. };
  73. },
  74. onLoad(options) {
  75. this.list1 = [{
  76. name: this.i18n.deliver,
  77. }, {
  78. name: this.i18n.Sign,
  79. }, {
  80. name: this.i18n.overseas
  81. }]
  82. console.log(options);
  83. this.current = options.index
  84. if (this.current == 0) {
  85. this.status = 'to_transit'
  86. } else if (this.current == 1) {
  87. this.status = 'transit_receipt'
  88. } else {
  89. this.status = 'to_overseas'
  90. }
  91. },
  92. computed: {
  93. i18n() {
  94. return this.$t('index')
  95. }
  96. },
  97. onShow() {
  98. uni.setNavigationBarTitle({
  99. title: this.i18n.mine + this.i18n.parcel
  100. })
  101. this.getlist()
  102. },
  103. methods: {
  104. //获取列表
  105. getlist() {
  106. uni.$u.http.get('/api/express-order?', {
  107. params: {
  108. container_id: '',
  109. status_collection: this.status
  110. }
  111. }).then((res) => {
  112. console.log(res);
  113. }).catch(() => {
  114. })
  115. },
  116. click(item) {
  117. console.log('item', item);
  118. this.current = item.index
  119. if (this.current == 0) {
  120. this.status = 'to_transit'
  121. } else if (this.current == 1) {
  122. this.status = 'transit_receipt'
  123. } else {
  124. this.status = 'to_overseas'
  125. }
  126. }
  127. },
  128. mounted() {
  129. }
  130. }
  131. </script>
  132. <style lang="scss" scoped>
  133. .flexc {
  134. display: flex;
  135. flex-direction: column;
  136. justify-content: center;
  137. align-items: center;
  138. }
  139. .content {
  140. padding: 20rpx 24rpx;
  141. box-sizing: border-box;
  142. .content-bottom {
  143. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  144. margin-top: 30rpx;
  145. padding-top: 30rpx;
  146. .weight {
  147. font-family: PingFangSC, PingFang SC;
  148. font-weight: 400;
  149. font-size: 26rpx;
  150. color: #444444;
  151. line-height: 36rpx;
  152. text-align: left;
  153. font-style: normal;
  154. }
  155. .btn {
  156. // width: 132rpx;
  157. height: 68rpx;
  158. border-radius: 34rpx;
  159. border: 1rpx solid rgba(151, 151, 151, 0.7);
  160. display: inline;
  161. padding: 0 20rpx;
  162. box-sizing: border-box;
  163. font-family: PingFangSC, PingFang SC;
  164. font-weight: 400;
  165. font-size: 28rpx;
  166. color: #333333;
  167. line-height: 68rpx;
  168. text-align: center;
  169. font-style: normal;
  170. margin-left: 20rpx;
  171. }
  172. }
  173. .sum {
  174. font-family: PingFangSC, PingFang SC;
  175. font-weight: 400;
  176. font-size: 24rpx;
  177. color: #333333;
  178. line-height: 34rpx;
  179. text-align: left;
  180. font-style: normal;
  181. margin-right: 8rpx;
  182. }
  183. .money {
  184. font-family: JDZhengHT, JDZhengHT;
  185. font-weight: 400;
  186. // font-size: 26rpx;
  187. color: #F83224;
  188. line-height: 32rpx;
  189. text-align: left;
  190. font-style: normal;
  191. }
  192. .adda {
  193. margin-top: 8rpx;
  194. font-family: PingFangSC, PingFang SC;
  195. font-weight: 400;
  196. font-size: 24rpx;
  197. color: #222222;
  198. line-height: 34rpx;
  199. text-align: right;
  200. font-style: normal;
  201. }
  202. .entrepotname {
  203. font-family: PingFangSC, PingFang SC;
  204. font-weight: 500;
  205. font-size: 32rpx;
  206. color: #222222;
  207. line-height: 44rpx;
  208. text-align: left;
  209. font-style: normal;
  210. }
  211. .tab {
  212. // width: 96rpx;
  213. height: 36rpx;
  214. background: #FF1515;
  215. border-radius: 4rpx;
  216. font-family: PingFangSC, PingFang SC;
  217. font-weight: 400;
  218. font-size: 20rpx;
  219. color: #FFFFFF;
  220. line-height: 36rpx;
  221. text-align: center;
  222. font-style: normal;
  223. margin-right: 8rpx;
  224. padding: 0 8rpx;
  225. }
  226. .order {
  227. font-family: SFPro, SFPro;
  228. font-weight: 400;
  229. font-size: 26rpx;
  230. color: #333333;
  231. line-height: 30rpx;
  232. text-align: left;
  233. font-style: normal;
  234. }
  235. .info {
  236. width: 702rpx;
  237. // height: 366rpx;
  238. background: #FFFFFF;
  239. border-radius: 16rpx;
  240. padding: 28rpx 20rpx;
  241. box-sizing: border-box;
  242. margin-top: 20rpx;
  243. }
  244. .kg {
  245. width: 702rpx;
  246. // height: 68rpx;
  247. background: #FBE8E6;
  248. border-radius: 10rpx;
  249. padding: 18rpx 26rpx;
  250. box-sizing: border-box;
  251. font-family: PingFangSC, PingFang SC;
  252. font-weight: 400;
  253. font-size: 24rpx;
  254. color: #F83224;
  255. line-height: 34rpx;
  256. text-align: left;
  257. font-style: normal;
  258. }
  259. }
  260. .top {
  261. padding: 20rpx 24rpx;
  262. box-sizing: border-box;
  263. background-color: #fff;
  264. .inputbg {
  265. width: 694rpx;
  266. height: 72rpx;
  267. background: #F4F4F4;
  268. border-radius: 38rpx;
  269. padding: 0 38rpx;
  270. box-sizing: border-box;
  271. }
  272. }
  273. </style>