parcel.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. if (this.logistics_no == '') {
  66. this.$u.toast(this.i18n.trackingNumber)
  67. return
  68. }
  69. if (this.logistics_company_name == '') {
  70. this.$u.toast(this.i18n.selectCourier)
  71. return
  72. }
  73. if (this.estimated_weight == '') {
  74. this.$u.toast(this.i18n.parcelWeight)
  75. return
  76. }
  77. uni.$u.http.post('/api/express-order/offline-create', {
  78. logistics_company_code: this.code, // 顺丰快递 是 String 快递公司
  79. logistics_no: this.logistics_no, //11111111 是 String 快递单号
  80. estimated_weight: this.estimated_weight, // 222 是 String 包裹重量
  81. }).then((res) => {
  82. this.$u.toast(this.i18n.successfullyAdded)
  83. // uni.navigateTo({
  84. // url:'pageB/myPackage'
  85. // })
  86. setTimeout(() => {
  87. uni.navigateBack()
  88. }, 800)
  89. }).catch(() => {
  90. })
  91. },
  92. }
  93. }
  94. </script>
  95. <style lang="scss" scoped>
  96. .selection {
  97. font-family: PingFangSC, PingFang SC;
  98. font-weight: 400;
  99. font-size: 28rpx;
  100. color: #666666;
  101. line-height: 40rpx;
  102. text-align: left;
  103. font-style: normal;
  104. }
  105. .btn {
  106. width: 686rpx;
  107. height: 88rpx;
  108. background: #F83224;
  109. border-radius: 44rpx;
  110. font-family: PingFangSC, PingFang SC;
  111. font-weight: 500;
  112. font-size: 32rpx;
  113. color: #FFFFFF;
  114. line-height: 88rpx;
  115. text-align: center;
  116. font-style: normal;
  117. margin-top: 94rpx;
  118. }
  119. .back {
  120. box-sizing: border-box;
  121. padding: 20rpx 24rpx;
  122. }
  123. .box {
  124. padding: 0 28rpx;
  125. box-sizing: border-box;
  126. width: 702rpx;
  127. // height: 324rpx;
  128. background: #FFFFFF;
  129. // border-radius: 16rpx;
  130. box-sizing: border-box;
  131. .boxitem {
  132. height: 100rpx;
  133. width: 646rpx;
  134. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  135. box-sizing: border-box;
  136. }
  137. .name {
  138. width: 150rpx;
  139. display: block;
  140. font-family: PingFangSC, PingFang SC;
  141. font-weight: 400;
  142. font-size: 30rpx;
  143. color: #222222;
  144. line-height: 42rpx;
  145. text-align: left;
  146. font-style: normal;
  147. margin-right: 44rpx;
  148. }
  149. }
  150. </style>