return-delivery.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <s-layout title="退货物流">
  3. <view>
  4. <form @submit="subRefund" report-submit='true'>
  5. <view class='apply-return'>
  6. <view class='list borRadius14'>
  7. <view class='item acea-row row-between-wrapper' style="display: flex;align-items: center;">
  8. <view>物流公司</view>
  9. <picker mode='selector' class='num' @change="bindPickerChange" :value="state.expressIndex"
  10. :range="state.expresses" range-key="name">
  11. <view class="picker acea-row row-between-wrapper">
  12. <view class='reason'>{{ state.expresses[state.expressIndex].name }}</view>
  13. <!-- TODO 非繁人:这里样式有问题,少了 > 按钮 -->
  14. <text class='iconfont icon-jiantou' />
  15. </view>
  16. </picker>
  17. </view>
  18. <view class='item textarea acea-row row-between' style="display: flex;align-items: center;">
  19. <view>物流单号</view>
  20. <input placeholder='请填写物流单号' class='num' name="logisticsNo"
  21. placeholder-class='placeholder' />
  22. </view>
  23. <button class='returnBnt bg-color ss-reset-button ui-BG-Main-Gradient sub-btn'
  24. form-type="submit"
  25. style="background: linear-gradient(90deg,var(--ui-BG-Main),var(--ui-BG-Main-gradient))!important">提交</button>
  26. </view>
  27. </view>
  28. </form>
  29. </view>
  30. </s-layout>
  31. </template>
  32. <script setup>
  33. import { onLoad } from '@dcloudio/uni-app';
  34. import { reactive } from 'vue';
  35. import sheep from '@/sheep';
  36. import AfterSaleApi from '@/sheep/api/trade/afterSale';
  37. import DeliveryApi from '@/sheep/api/trade/delivery';
  38. const state = reactive({
  39. id: 0, // 售后编号
  40. expressIndex: 0, // 选中的 expresses 下标
  41. expresses: [], // 可选的快递列表
  42. })
  43. function bindPickerChange(e) {
  44. state.expressIndex = e.detail.value;
  45. }
  46. async function subRefund(e) {
  47. let data = {
  48. id: state.id,
  49. logisticsId: state.expresses[state.expressIndex].id,
  50. logisticsNo: e.detail.value.logisticsNo,
  51. };
  52. const { code } = await AfterSaleApi.deliveryAfterSale(data);
  53. if (code !== 0) {
  54. return;
  55. }
  56. uni.showToast({
  57. title: '填写退货成功',
  58. });
  59. sheep.$router.go('/pages/order/aftersale/detail', { id: state.id });
  60. }
  61. // 获得快递物流列表
  62. async function getExpressList() {
  63. const { code, data } = await DeliveryApi.getDeliveryExpressList();
  64. if (code !== 0) {
  65. return;
  66. }
  67. state.expresses = data;
  68. }
  69. onLoad(options => {
  70. if (!options.id) {
  71. sheep.$helper.toast(`缺少订单信息,请检查`);
  72. return
  73. }
  74. state.id = options.id;
  75. // 获得快递物流列表
  76. getExpressList();
  77. })
  78. </script>
  79. <style lang="scss" scoped>
  80. .apply-return {
  81. padding: 20rpx 30rpx 70rpx 30rpx;
  82. }
  83. .apply-return .list {
  84. background-color: #fff;
  85. margin-top: 18rpx;
  86. padding: 0 24rpx 70rpx 24rpx;
  87. }
  88. .apply-return .list .item {
  89. min-height: 90rpx;
  90. border-bottom: 1rpx solid #eee;
  91. font-size: 30rpx;
  92. color: #333;
  93. }
  94. .apply-return .list .item .num {
  95. color: #282828;
  96. margin-left: 27rpx;
  97. // width: 227rpx;
  98. // text-align: right;
  99. }
  100. .apply-return .list .item .num .picker .reason {
  101. width: 385rpx;
  102. }
  103. .apply-return .list .item .num .picker .iconfont {
  104. color: #666;
  105. font-size: 30rpx;
  106. margin-top: 2rpx;
  107. }
  108. .apply-return .list .item.textarea {
  109. padding: 24rpx 0;
  110. }
  111. .apply-return .list .item textarea {
  112. height: 100rpx;
  113. font-size: 30rpx;
  114. }
  115. .apply-return .list .item .placeholder {
  116. color: #bbb;
  117. }
  118. .apply-return .list .item .title {
  119. height: 95rpx;
  120. width: 100%;
  121. }
  122. .apply-return .list .item .title .tip {
  123. font-size: 30rpx;
  124. color: #bbb;
  125. }
  126. .apply-return .list .item .upload {
  127. padding-bottom: 36rpx;
  128. }
  129. .apply-return .list .item .upload .pictrue {
  130. border-radius: 14rpx;
  131. margin: 22rpx 23rpx 0 0;
  132. width: 156rpx;
  133. height: 156rpx;
  134. position: relative;
  135. font-size: 24rpx;
  136. color: #bbb;
  137. }
  138. .apply-return .list .item .upload .pictrue:nth-of-type(4n) {
  139. margin-right: 0;
  140. }
  141. .apply-return .list .item .upload .pictrue image {
  142. width: 100%;
  143. height: 100%;
  144. border-radius: 14rpx;
  145. }
  146. .apply-return .list .item .upload .pictrue .icon-guanbi1 {
  147. position: absolute;
  148. font-size: 45rpx;
  149. top: -10rpx;
  150. right: -10rpx;
  151. }
  152. .apply-return .list .item .upload .pictrue .icon-icon25201 {
  153. color: #bfbfbf;
  154. font-size: 50rpx;
  155. }
  156. .apply-return .list .item .upload .pictrue:nth-last-child(1) {
  157. border: 1rpx solid #ddd;
  158. box-sizing: border-box;
  159. }
  160. .apply-return .returnBnt {
  161. font-size: 32rpx;
  162. color: #fff;
  163. width: 100%;
  164. height: 86rpx;
  165. border-radius: 50rpx;
  166. text-align: center;
  167. line-height: 86rpx;
  168. margin: 43rpx auto;
  169. }
  170. </style>