myPackage.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. };
  72. },
  73. onLoad(options) {
  74. this.list1 = [{
  75. name: this.i18n.deliver,
  76. }, {
  77. name: this.i18n.Sign,
  78. }, {
  79. name: this.i18n.overseas
  80. }]
  81. console.log(options);
  82. this.current = options.index
  83. },
  84. computed: {
  85. i18n() {
  86. return this.$t('index')
  87. }
  88. },
  89. onShow() {
  90. uni.setNavigationBarTitle({
  91. title: this.i18n.mine + this.i18n.parcel
  92. })
  93. },
  94. methods: {
  95. click(item) {
  96. console.log('item', item);
  97. this.current = item.index
  98. }
  99. },
  100. mounted() {
  101. }
  102. }
  103. </script>
  104. <style lang="scss" scoped>
  105. .flexc {
  106. display: flex;
  107. flex-direction: column;
  108. justify-content: center;
  109. align-items: center;
  110. }
  111. .content {
  112. padding: 20rpx 24rpx;
  113. box-sizing: border-box;
  114. .content-bottom {
  115. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  116. margin-top: 30rpx;
  117. padding-top: 30rpx;
  118. .weight {
  119. font-family: PingFangSC, PingFang SC;
  120. font-weight: 400;
  121. font-size: 26rpx;
  122. color: #444444;
  123. line-height: 36rpx;
  124. text-align: left;
  125. font-style: normal;
  126. }
  127. .btn {
  128. // width: 132rpx;
  129. height: 68rpx;
  130. border-radius: 34rpx;
  131. border: 1rpx solid rgba(151, 151, 151, 0.7);
  132. display: inline;
  133. padding: 0 20rpx;
  134. box-sizing: border-box;
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 400;
  137. font-size: 28rpx;
  138. color: #333333;
  139. line-height: 68rpx;
  140. text-align: center;
  141. font-style: normal;
  142. margin-left: 20rpx;
  143. }
  144. }
  145. .sum {
  146. font-family: PingFangSC, PingFang SC;
  147. font-weight: 400;
  148. font-size: 24rpx;
  149. color: #333333;
  150. line-height: 34rpx;
  151. text-align: left;
  152. font-style: normal;
  153. margin-right: 8rpx;
  154. }
  155. .money {
  156. font-family: JDZhengHT, JDZhengHT;
  157. font-weight: 400;
  158. // font-size: 26rpx;
  159. color: #F83224;
  160. line-height: 32rpx;
  161. text-align: left;
  162. font-style: normal;
  163. }
  164. .adda {
  165. margin-top: 8rpx;
  166. font-family: PingFangSC, PingFang SC;
  167. font-weight: 400;
  168. font-size: 24rpx;
  169. color: #222222;
  170. line-height: 34rpx;
  171. text-align: right;
  172. font-style: normal;
  173. }
  174. .entrepotname {
  175. font-family: PingFangSC, PingFang SC;
  176. font-weight: 500;
  177. font-size: 32rpx;
  178. color: #222222;
  179. line-height: 44rpx;
  180. text-align: left;
  181. font-style: normal;
  182. }
  183. .tab {
  184. // width: 96rpx;
  185. height: 36rpx;
  186. background: #FF1515;
  187. border-radius: 4rpx;
  188. font-family: PingFangSC, PingFang SC;
  189. font-weight: 400;
  190. font-size: 20rpx;
  191. color: #FFFFFF;
  192. line-height: 36rpx;
  193. text-align: center;
  194. font-style: normal;
  195. margin-right: 8rpx;
  196. padding: 0 8rpx;
  197. }
  198. .order {
  199. font-family: SFPro, SFPro;
  200. font-weight: 400;
  201. font-size: 26rpx;
  202. color: #333333;
  203. line-height: 30rpx;
  204. text-align: left;
  205. font-style: normal;
  206. }
  207. .info {
  208. width: 702rpx;
  209. // height: 366rpx;
  210. background: #FFFFFF;
  211. border-radius: 16rpx;
  212. padding: 28rpx 20rpx;
  213. box-sizing: border-box;
  214. margin-top: 20rpx;
  215. }
  216. .kg {
  217. width: 702rpx;
  218. // height: 68rpx;
  219. background: #FBE8E6;
  220. border-radius: 10rpx;
  221. padding: 18rpx 26rpx;
  222. box-sizing: border-box;
  223. font-family: PingFangSC, PingFang SC;
  224. font-weight: 400;
  225. font-size: 24rpx;
  226. color: #F83224;
  227. line-height: 34rpx;
  228. text-align: left;
  229. font-style: normal;
  230. }
  231. }
  232. .top {
  233. padding: 20rpx 24rpx;
  234. box-sizing: border-box;
  235. background-color: #fff;
  236. .inputbg {
  237. width: 694rpx;
  238. height: 72rpx;
  239. background: #F4F4F4;
  240. border-radius: 38rpx;
  241. padding: 0 38rpx;
  242. box-sizing: border-box;
  243. }
  244. }
  245. </style>