parcel.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <!-- 添加包裹 -->
  3. <view class="back">
  4. <view class="box">
  5. <view class="boxitem u-flex">
  6. <text class="name">快递单号</text>
  7. <input style="flex: 1;" type="text" placeholder="输入快递单号,快速添加到我的包裹" />
  8. </view>
  9. </view>
  10. <view class="box">
  11. <view class="boxitem u-flex">
  12. <text class="name">快递公司</text>
  13. <input style="flex: 1;" type="text" placeholder="输入快递公司名称" />
  14. </view>
  15. </view>
  16. <view class="box">
  17. <view class="boxitem u-flex">
  18. <text class="name">包裹重量</text>
  19. <input style="flex: 1;" type="text" placeholder="请输入包裹重量" />
  20. <text>kg</text>
  21. </view>
  22. </view>
  23. <view class="btn">
  24. 添加到包裹列表
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. };
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .btn {
  38. width: 686rpx;
  39. height: 88rpx;
  40. background: #F83224;
  41. border-radius: 44rpx;
  42. font-family: PingFangSC, PingFang SC;
  43. font-weight: 500;
  44. font-size: 32rpx;
  45. color: #FFFFFF;
  46. line-height: 88rpx;
  47. text-align: center;
  48. font-style: normal;
  49. margin-top: 94rpx;
  50. }
  51. .back {
  52. box-sizing: border-box;
  53. padding: 20rpx 24rpx;
  54. }
  55. .box {
  56. padding: 0 28rpx;
  57. box-sizing: border-box;
  58. width: 702rpx;
  59. // height: 324rpx;
  60. background: #FFFFFF;
  61. border-radius: 16rpx;
  62. .boxitem {
  63. height: 100rpx;
  64. width: 646rpx;
  65. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  66. box-sizing: border-box;
  67. }
  68. .name {
  69. font-family: PingFangSC, PingFang SC;
  70. font-weight: 400;
  71. font-size: 30rpx;
  72. color: #222222;
  73. line-height: 42rpx;
  74. text-align: left;
  75. font-style: normal;
  76. margin-right: 44rpx;
  77. }
  78. }
  79. </style>