refundDetail.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <view class="page">
  3. <RefundSuccessful
  4. v-if="refundDetail.goods[0].refund.status == 1"
  5. @checkMoney="checkMoney"
  6. :refundDetail="refundDetail"
  7. />
  8. <RefundInProgress
  9. v-if="refundDetail.goods[0].refund.status == 0"
  10. :refundDetail="refundDetail"
  11. />
  12. <RefusalToRefund
  13. v-if="
  14. refundDetail.goods[0].refund.status == 2 ||
  15. refundDetail.goods[0].refund.status == 3
  16. "
  17. :refundDetail="refundDetail"
  18. />
  19. <RefundInformation
  20. :goodsDetail="refundDetail.goods[0]"
  21. :refundDetail="refundDetail"
  22. />
  23. <MoneyDestination
  24. :show="show"
  25. @close="close"
  26. :refundDetail="refundDetail"
  27. />
  28. <view class="footer" v-if="refundDetail.goods[0].refund.status != 1">
  29. <button class="btn" @click="platformIntervene">平台介入</button>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import RefundSuccessful from "./component/refundSuccessful.vue";
  35. import RefundInProgress from "./component/refundInProgress.vue";
  36. import RefusalToRefund from "./component/refusalToRefund.vue";
  37. import RefundInformation from "./component/refundInformation.vue";
  38. import MoneyDestination from "./component/moneyDestination.vue";
  39. export default {
  40. components: {
  41. RefundInformation,
  42. MoneyDestination,
  43. RefundSuccessful,
  44. RefundInProgress,
  45. RefusalToRefund,
  46. },
  47. data() {
  48. return {
  49. show: false,
  50. status: 1,
  51. orderRefundId: "",
  52. refundDetail: {},
  53. };
  54. },
  55. onLoad(options) {
  56. console.log(options);
  57. this.orderRefundId = options.orderId;
  58. this.getDetail();
  59. },
  60. methods: {
  61. checkMoney() {
  62. this.show = true;
  63. },
  64. close() {
  65. this.show = false;
  66. },
  67. //申请平台介入
  68. platformIntervene() {
  69. if (this.refundDetail.goods[0].refund.status != 3) {
  70. uni.$u.http
  71. .post(`/api/order_refund/platform_intervention`, {
  72. order_refund_id: this.refundDetail.goods[0].refund.id,
  73. })
  74. .then((res) => {
  75. uni.showToast({
  76. title: "已申请平台介入",
  77. icon: "none",
  78. });
  79. });
  80. } else {
  81. uni.showToast({
  82. title: "平台已介入",
  83. icon: "none",
  84. });
  85. }
  86. },
  87. //获取售后订单详情
  88. getDetail() {
  89. uni.$u.http
  90. .post(`/api/order/refund_read`, { order_refund_id: this.orderRefundId })
  91. .then((res) => {
  92. this.refundDetail = res;
  93. console.log(this.refundDetail);
  94. });
  95. },
  96. },
  97. created() {
  98. uni.setNavigationBarTitle({
  99. title: "退款详情",
  100. });
  101. },
  102. };
  103. </script>
  104. <style lang="scss" scoped>
  105. .page {
  106. padding: 20rpx 24rpx;
  107. position: relative;
  108. .footer {
  109. position: fixed;
  110. bottom: 0;
  111. padding: 20rpx 24rpx 60rpx;
  112. background-color: #fff;
  113. left: 0;
  114. width: 94%;
  115. display: flex;
  116. justify-content: flex-end;
  117. .btn {
  118. margin: 0;
  119. padding: 0;
  120. background-color: #fff;
  121. border: 2rpx solid #979797;
  122. color: #222222;
  123. border-radius: 44rpx;
  124. width: 188rpx;
  125. height: 78rpx;
  126. line-height: 78rpx;
  127. font-size: 28rpx;
  128. }
  129. }
  130. }
  131. </style>