refundDetail.vue 3.3 KB

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