parcel.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <!-- 添加包裹 -->
  3. <view class="back">
  4. <view class="box" style="border-radius: 16rpx 16rpx 0 0 ">
  5. <view class="boxitem u-flex">
  6. <text class="name">{{i18n.TrackingNumber}}</text>
  7. <input style="flex: 1;" type="text" :placeholder="i18n.trackingNumber" />
  8. </view>
  9. </view>
  10. <view class="box">
  11. <view class="boxitem u-flex">
  12. <text class="name">{{i18n.Expresscompany}}</text>
  13. <input style="flex: 1;" type="text" :placeholder="i18n.ExpressCompany" />
  14. </view>
  15. </view>
  16. <view class="box" style="border-radius:0 0 16rpx 16rpx">
  17. <view class="boxitem u-flex">
  18. <text class="name">{{i18n.Parcelweight}}</text>
  19. <input style="flex: 1;" type="text" :placeholder="i18n.parcelWeight" />
  20. <text>kg</text>
  21. </view>
  22. </view>
  23. <view class="btn">
  24. {{i18n.Addlist}}
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. };
  33. },
  34. computed: {
  35. i18n() {
  36. return this.$t('index')
  37. }
  38. },
  39. onShow() {
  40. uni.setNavigationBarTitle({
  41. title: this.i18n.Addparcel
  42. })
  43. },
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. .btn {
  48. width: 686rpx;
  49. height: 88rpx;
  50. background: #F83224;
  51. border-radius: 44rpx;
  52. font-family: PingFangSC, PingFang SC;
  53. font-weight: 500;
  54. font-size: 32rpx;
  55. color: #FFFFFF;
  56. line-height: 88rpx;
  57. text-align: center;
  58. font-style: normal;
  59. margin-top: 94rpx;
  60. }
  61. .back {
  62. box-sizing: border-box;
  63. padding: 20rpx 24rpx;
  64. }
  65. .box {
  66. padding: 0 28rpx;
  67. box-sizing: border-box;
  68. width: 702rpx;
  69. // height: 324rpx;
  70. background: #FFFFFF;
  71. // border-radius: 16rpx;
  72. box-sizing: border-box;
  73. .boxitem {
  74. height: 100rpx;
  75. width: 646rpx;
  76. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  77. box-sizing: border-box;
  78. }
  79. .name {
  80. width: 150rpx;
  81. display: block;
  82. font-family: PingFangSC, PingFang SC;
  83. font-weight: 400;
  84. font-size: 30rpx;
  85. color: #222222;
  86. line-height: 42rpx;
  87. text-align: left;
  88. font-style: normal;
  89. margin-right: 44rpx;
  90. }
  91. }
  92. </style>