refusalToRefund.vue 2.4 KB

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