parcel.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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" v-model="logistics_no" />
  8. </view>
  9. </view>
  10. <view class="box">
  11. <view class="boxitem u-flex u-row-between">
  12. <text class="name">{{i18n.Expresscompany}}</text>
  13. <view class="u-flex" @click="toexpress">
  14. <view class="selection">{{logistics_company_name||i18n.selection}}</view>
  15. <image src="../static/express/next1.png" style="width: 30rpx;height: 30rpx;" mode=""></image>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="box" style="border-radius:0 0 16rpx 16rpx">
  20. <view class="boxitem u-flex u-row-end">
  21. <text class="name">{{i18n.Parcelweight}}</text>
  22. <input style="flex: 1;" type="text" :placeholder="i18n.parcelWeight" v-model="estimated_weight" />
  23. <text>kg</text>
  24. </view>
  25. </view>
  26. <view class="btn" @click="offline">
  27. {{i18n.Addlist}}
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. logistics_company_name: '', // 顺丰快递 是 String 快递公司
  36. logistics_no: '', //11111111 是 String 快递单号
  37. estimated_weight: '', // 222 是 String 包裹重量
  38. code:''
  39. };
  40. },
  41. computed: {
  42. i18n() {
  43. return this.$t('index')
  44. }
  45. },
  46. onShow() {
  47. uni.setNavigationBarTitle({
  48. title: this.i18n.Addparcel
  49. })
  50. },
  51. methods: {
  52. toexpress() {
  53. uni.navigateTo({
  54. url: '/pageB/expresstype',
  55. events: {
  56. todcp: (res) => {
  57. this.logistics_company_name = res.concant
  58. this.code = res.code
  59. }
  60. }
  61. })
  62. },
  63. //线下下单
  64. offline() {
  65. uni.$u.http.post('/api/express-order/offline-create', {
  66. logistics_company_code: this.code, // 顺丰快递 是 String 快递公司
  67. logistics_no: this.logistics_no, //11111111 是 String 快递单号
  68. estimated_weight: this.estimated_weight, // 222 是 String 包裹重量
  69. }).then((res) => {
  70. this.$u.toast('添加成功')
  71. // uni.navigateTo({
  72. // url:'pageB/myPackage'
  73. // })
  74. setTimeout(() => {
  75. uni.navigateBack()
  76. }, 800)
  77. }).catch(() => {
  78. })
  79. },
  80. }
  81. }
  82. </script>
  83. <style lang="scss" scoped>
  84. .selection {
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 400;
  87. font-size: 28rpx;
  88. color: #666666;
  89. line-height: 40rpx;
  90. text-align: left;
  91. font-style: normal;
  92. }
  93. .btn {
  94. width: 686rpx;
  95. height: 88rpx;
  96. background: #F83224;
  97. border-radius: 44rpx;
  98. font-family: PingFangSC, PingFang SC;
  99. font-weight: 500;
  100. font-size: 32rpx;
  101. color: #FFFFFF;
  102. line-height: 88rpx;
  103. text-align: center;
  104. font-style: normal;
  105. margin-top: 94rpx;
  106. }
  107. .back {
  108. box-sizing: border-box;
  109. padding: 20rpx 24rpx;
  110. }
  111. .box {
  112. padding: 0 28rpx;
  113. box-sizing: border-box;
  114. width: 702rpx;
  115. // height: 324rpx;
  116. background: #FFFFFF;
  117. // border-radius: 16rpx;
  118. box-sizing: border-box;
  119. .boxitem {
  120. height: 100rpx;
  121. width: 646rpx;
  122. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  123. box-sizing: border-box;
  124. }
  125. .name {
  126. width: 150rpx;
  127. display: block;
  128. font-family: PingFangSC, PingFang SC;
  129. font-weight: 400;
  130. font-size: 30rpx;
  131. color: #222222;
  132. line-height: 42rpx;
  133. text-align: left;
  134. font-style: normal;
  135. margin-right: 44rpx;
  136. }
  137. }
  138. </style>