refundDetail.vue 2.8 KB

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