return-delivery.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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 " style="display: flex;align-items: center;">
  12. <view class='reason'>{{ state.expresses[state.expressIndex].name }}</view>
  13. <!-- TODO 非繁人:这里样式有问题,少了 > 按钮 -->
  14. <image src="@/static/icon/select-icon.png" class="select-icon" />
  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 {
  34. onLoad
  35. } from '@dcloudio/uni-app';
  36. import {
  37. reactive
  38. } from 'vue';
  39. import sheep from '@/sheep';
  40. import AfterSaleApi from '@/sheep/api/trade/afterSale';
  41. import DeliveryApi from '@/sheep/api/trade/delivery';
  42. const state = reactive({
  43. id: 0, // 售后编号
  44. expressIndex: 0, // 选中的 expresses 下标
  45. expresses: [], // 可选的快递列表
  46. })
  47. function bindPickerChange(e) {
  48. state.expressIndex = e.detail.value;
  49. }
  50. async function subRefund(e) {
  51. if(!state.expresses[state.expressIndex].id){
  52. uni.showToast({
  53. title: '请选择物流公司',
  54. });
  55. return false
  56. }
  57. if(!e.detail.value.logisticsNo){
  58. uni.showToast({
  59. title: '请填写物流单号',
  60. });
  61. return false
  62. }
  63. let data = {
  64. id: state.id,
  65. logisticsId: state.expresses[state.expressIndex].id,
  66. logisticsNo: e.detail.value.logisticsNo,
  67. };
  68. const {
  69. code
  70. } = await AfterSaleApi.deliveryAfterSale(data);
  71. if (code !== 0) {
  72. return;
  73. }
  74. uni.showToast({
  75. title: '填写退货成功',
  76. });
  77. sheep.$router.go('/pages/order/aftersale/detail', {
  78. id: state.id
  79. });
  80. }
  81. // 获得快递物流列表
  82. async function getExpressList() {
  83. const {
  84. code,
  85. data
  86. } = await DeliveryApi.getDeliveryExpressList();
  87. if (code !== 0) {
  88. return;
  89. }
  90. state.expresses = data;
  91. state.expresses.unshift({
  92. "id": 0,
  93. "name": "请选择"
  94. },)
  95. }
  96. onLoad(options => {
  97. if (!options.id) {
  98. sheep.$helper.toast(`缺少订单信息,请检查`);
  99. return
  100. }
  101. state.id = options.id;
  102. // 获得快递物流列表
  103. getExpressList();
  104. })
  105. </script>
  106. <style lang="scss" scoped>
  107. .apply-return {
  108. padding: 20rpx 30rpx 70rpx 30rpx;
  109. }
  110. .apply-return .list {
  111. background-color: #fff;
  112. margin-top: 18rpx;
  113. padding: 0 24rpx 70rpx 24rpx;
  114. }
  115. .apply-return .list .item {
  116. min-height: 90rpx;
  117. border-bottom: 1rpx solid #eee;
  118. font-size: 30rpx;
  119. color: #333;
  120. }
  121. .apply-return .list .item .num {
  122. color: #282828;
  123. margin-left: 27rpx;
  124. // width: 227rpx;
  125. // text-align: right;
  126. }
  127. .apply-return .list .item .num .picker .reason {
  128. width: 14rem;
  129. }
  130. .apply-return .list .item .num .picker .iconfont {
  131. color: #666;
  132. font-size: 30rpx;
  133. margin-top: 2rpx;
  134. }
  135. .select-icon {
  136. width:30rpx;
  137. height:30rpx;
  138. }
  139. .apply-return .list .item.textarea {
  140. padding: 24rpx 0;
  141. }
  142. .apply-return .list .item textarea {
  143. height: 100rpx;
  144. font-size: 30rpx;
  145. }
  146. .apply-return .list .item .placeholder {
  147. color: #bbb;
  148. }
  149. .apply-return .list .item .title {
  150. height: 95rpx;
  151. width: 100%;
  152. }
  153. .apply-return .list .item .title .tip {
  154. font-size: 30rpx;
  155. color: #bbb;
  156. }
  157. .apply-return .list .item .upload {
  158. padding-bottom: 36rpx;
  159. }
  160. .apply-return .list .item .upload .pictrue {
  161. border-radius: 14rpx;
  162. margin: 22rpx 23rpx 0 0;
  163. width: 156rpx;
  164. height: 156rpx;
  165. position: relative;
  166. font-size: 24rpx;
  167. color: #bbb;
  168. }
  169. .apply-return .list .item .upload .pictrue:nth-of-type(4n) {
  170. margin-right: 0;
  171. }
  172. .apply-return .list .item .upload .pictrue image {
  173. width: 100%;
  174. height: 100%;
  175. border-radius: 14rpx;
  176. }
  177. .apply-return .list .item .upload .pictrue .icon-guanbi1 {
  178. position: absolute;
  179. font-size: 45rpx;
  180. top: -10rpx;
  181. right: -10rpx;
  182. }
  183. .apply-return .list .item .upload .pictrue .icon-icon25201 {
  184. color: #bfbfbf;
  185. font-size: 50rpx;
  186. }
  187. .apply-return .list .item .upload .pictrue:nth-last-child(1) {
  188. border: 1rpx solid #ddd;
  189. box-sizing: border-box;
  190. }
  191. .apply-return .returnBnt {
  192. font-size: 32rpx;
  193. color: #fff;
  194. width: 100%;
  195. height: 86rpx;
  196. border-radius: 50rpx;
  197. text-align: center;
  198. line-height: 86rpx;
  199. margin: 43rpx auto;
  200. }
  201. </style>