refusalToRefund.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view>
  3. <view class="top-direction" v-if="refundDetail.goods[0].refund.status == 2">
  4. <view class="direction-frist">
  5. <view class=""> 卖家拒绝了您的退款申请 </view>
  6. </view>
  7. <view class="time"> {{ refundDetail.goods[0].refund.reason }} </view>
  8. <view class="time"> 2023-12-08 12:45 </view>
  9. </view>
  10. <view class="top-direction" v-else>
  11. <view class="direction-frist">
  12. <view class=""> 已申请平台介入 </view>
  13. </view>
  14. <view class="time">
  15. {{ refundDetail.goods[0].refund.reason || "" }}
  16. </view>
  17. <view class="time"> 2023-12-08 12:45 </view>
  18. </view>
  19. <!-- <view class="direction-frist1">
  20. <view class=""> 退款成功 </view>
  21. <view class="commodity-price">
  22. <text style="font-size: 20rpx">¥</text>
  23. <text>{{
  24. refundDetail.goods[0].refund.refund_price.split(".")[0]
  25. }}</text
  26. >.
  27. <text style="font-size: 20rpx">{{
  28. refundDetail.goods[0].refund.refund_price.split(".")[1]
  29. }}</text>
  30. </view>
  31. </view> -->
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. props: {
  37. refundDetail: {
  38. typeof: Object,
  39. default: () => {
  40. return {};
  41. },
  42. },
  43. },
  44. };
  45. </script>
  46. <style scoped lang="scss">
  47. .top-direction {
  48. padding: 36rpx 24rpx;
  49. border-radius: 16rpx;
  50. background-color: #fff;
  51. .direction-frist {
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. font-size: 36rpx;
  56. font-weight: 500;
  57. .commodity-price {
  58. color: #f83224;
  59. }
  60. }
  61. .time {
  62. color: rgba(34, 34, 34, 0.6);
  63. font-size: 24rpx;
  64. margin-top: 20rpx;
  65. }
  66. .direction-last {
  67. margin-top: 32rpx;
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. font-size: 28rpx;
  72. color: #333;
  73. }
  74. .check {
  75. margin-top: 44rpx;
  76. border-radius: 38rpx;
  77. background-color: #fff;
  78. padding: 0;
  79. border: 2rpx solid rgba(151, 151, 151, 0.2);
  80. color: #333;
  81. font-size: 28rpx;
  82. height: 76rpx;
  83. }
  84. }
  85. .direction-frist1 {
  86. display: flex;
  87. justify-content: space-between;
  88. align-items: center;
  89. font-size: 36rpx;
  90. font-weight: 500;
  91. margin-top: 20rpx;
  92. background-color: #fff;
  93. height: 100rpx;
  94. border-radius: 16rpx;
  95. padding: 0 24rpx;
  96. .commodity-price {
  97. color: #f83224;
  98. }
  99. }
  100. </style>