refundSuccessful.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="top-direction">
  3. <view class="direction-frist">
  4. <view class=""> {{ i18n.refundSuccessful }} </view>
  5. <view class="commodity-price">
  6. <text style="font-size: 20rpx">¥</text>
  7. <text>{{
  8. refundDetail.goods[0].refund.actual_refund_price.split(".")[0]
  9. }}</text
  10. >.
  11. <text style="font-size: 20rpx">{{
  12. refundDetail.goods[0].refund.actual_refund_price.split(".")[1]
  13. }}</text>
  14. </view>
  15. </view>
  16. <view class="time"> {{ refundDetail.goods[0].refund.updated_at }} </view>
  17. <view class="direction-last">
  18. <view class=""> {{ i18n.refundBalance }} </view>
  19. <view class="commodity-price">
  20. <text style="font-size: 20rpx">¥</text>
  21. <text>{{
  22. refundDetail.goods[0].refund.actual_refund_price.split(".")[0]
  23. }}</text
  24. >.
  25. <text style="font-size: 20rpx">{{
  26. refundDetail.goods[0].refund.actual_refund_price.split(".")[1]
  27. }}</text>
  28. </view>
  29. </view>
  30. <button class="check" @click="$emit('checkMoney')">
  31. {{ i18n.checkMoney }}
  32. </button>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. props: {
  38. refundDetail: {
  39. typeof: Object,
  40. default: () => {
  41. return {};
  42. },
  43. },
  44. i18n: {
  45. typeof: Object,
  46. default: () => {
  47. return {};
  48. },
  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. </style>