sending.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="page">
  3. <view class="address">
  4. <view class="address-top">
  5. <text space="emsp" class="top_left_text">跨境中转仓库地址 {{"&emsp;"}}</text>
  6. <text class="top_right_text">请先将包裹寄往这个地址~</text>
  7. </view>
  8. <view class="address-content">
  9. <image class="address-icon" src="../../static/mine/346.png" mode=""></image>
  10. <view class="">
  11. <view class="warehouse-phone">
  12. <text class="warehouse-name">贝德福德郡FBA仓库</text>
  13. <text class="phone" space="emsp">{{"&emsp;"}} 18292882813</text>
  14. </view>
  15. <view class="detail">
  16. 上海市上海市宝山区杨行镇联谊路190号
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="express">
  22. <view class="_input-1 _input-2">
  23. <view class="_label">快递单号</view>
  24. <u--input placeholder="请输入快递单号" border="none" clearable></u--input>
  25. </view>
  26. <view class="_input-1">
  27. <view class="_label">快递公司</view>
  28. <u--input placeholder="请输入快递公司名称" border="none" clearable></u--input>
  29. </view>
  30. </view>
  31. <view class="footer">
  32. <button class="btn-2">保存</button>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. };
  41. },
  42. mounted() {
  43. uni.setNavigationBarTitle({
  44. title: "寄快递"
  45. })
  46. }
  47. }
  48. </script>
  49. <style lang="scss" scoped>
  50. .page {
  51. padding: 20rpx 24rpx;
  52. position: relative;
  53. .address {
  54. padding: 0 20rpx;
  55. background-color: #fff;
  56. border-radius: 16rpx;
  57. .address-top {
  58. height: 96rpx;
  59. line-height: 96rpx;
  60. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  61. .top_left_text {
  62. font-size: 28rpx;
  63. color: #222;
  64. font-weight: 600;
  65. }
  66. .top_right_text {
  67. font-size: 24rpx;
  68. color: #F83224;
  69. }
  70. }
  71. .address-content {
  72. display: flex;
  73. align-items: center;
  74. padding: 22rpx 0 32rpx;
  75. .address-icon {
  76. width: 28rpx;
  77. height: 28rpx;
  78. margin-right: 24rpx;
  79. }
  80. .warehouse-phone {
  81. display: flex;
  82. align-items: center;
  83. margin-bottom: 14rpx;
  84. .warehouse-name {
  85. font-size: 30rpx;
  86. font-weight: 600;
  87. color: #222222;
  88. }
  89. .phone {
  90. color: #555555;
  91. font-size: 24rpx;
  92. }
  93. }
  94. .detail {
  95. font-size: 26rpx;
  96. color: #777777;
  97. }
  98. }
  99. }
  100. .express {
  101. border-radius: 16rpx;
  102. background-color: #fff;
  103. padding: 0 20rpx;
  104. margin-top: 20rpx;
  105. ._input-1 {
  106. display: flex;
  107. align-items: center;
  108. height: 100rpx;
  109. ._label{
  110. font-size: 28rpx;
  111. color: #222;
  112. margin-right: 32rpx;
  113. }
  114. }
  115. ._input-2{
  116. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  117. }
  118. }
  119. .footer {
  120. position: fixed;
  121. bottom: 0;
  122. left: 0;
  123. width: 95%;
  124. background-color: #fff;
  125. height: 126rpx;
  126. justify-content: center;
  127. padding: 20rpx;
  128. .btn-2 {
  129. height: 76rpx;
  130. padding: 0;
  131. margin: 0;
  132. font-size: 28rpx;
  133. color: #fff;
  134. min-width: 188rpx;
  135. background-color: #f83224;
  136. border-radius: 38rpx;
  137. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255,21,21,0.5);
  138. }
  139. }
  140. }
  141. </style>