refusalToRefund.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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=""> {{ i18n.rejectedRefund }} </view>
  6. </view>
  7. <view class="time" v-if="refundDetail.goods[0].refund.reason">
  8. {{ i18n.business + ":" + 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=""> {{ i18n.appliedIntervene }} </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. computed: {
  47. i18n() {
  48. return this.$t("index");
  49. },
  50. },
  51. };
  52. </script>
  53. <style scoped lang="scss">
  54. .top-direction {
  55. padding: 36rpx 24rpx;
  56. border-radius: 16rpx;
  57. background-color: #fff;
  58. .direction-frist {
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. font-size: 36rpx;
  63. font-weight: 500;
  64. .commodity-price {
  65. color: #f83224;
  66. }
  67. }
  68. .time {
  69. color: rgba(34, 34, 34, 0.6);
  70. font-size: 24rpx;
  71. margin-top: 20rpx;
  72. }
  73. .direction-last {
  74. margin-top: 32rpx;
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. font-size: 28rpx;
  79. color: #333;
  80. }
  81. .check {
  82. margin-top: 44rpx;
  83. border-radius: 38rpx;
  84. background-color: #fff;
  85. padding: 0;
  86. border: 2rpx solid rgba(151, 151, 151, 0.2);
  87. color: #333;
  88. font-size: 28rpx;
  89. height: 76rpx;
  90. }
  91. }
  92. .direction-frist1 {
  93. display: flex;
  94. justify-content: space-between;
  95. align-items: center;
  96. font-size: 36rpx;
  97. font-weight: 500;
  98. margin-top: 20rpx;
  99. background-color: #fff;
  100. height: 100rpx;
  101. border-radius: 16rpx;
  102. padding: 0 24rpx;
  103. .commodity-price {
  104. color: #f83224;
  105. }
  106. }
  107. </style>