refundSuccessful.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. },
  45. };
  46. </script>
  47. <style scoped lang="scss">
  48. .top-direction {
  49. padding: 36rpx 24rpx;
  50. border-radius: 16rpx;
  51. background-color: #fff;
  52. .direction-frist {
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. font-size: 36rpx;
  57. font-weight: 500;
  58. .commodity-price {
  59. color: #f83224;
  60. }
  61. }
  62. .time {
  63. color: rgba(34, 34, 34, 0.6);
  64. font-size: 24rpx;
  65. margin-top: 20rpx;
  66. }
  67. .direction-last {
  68. margin-top: 32rpx;
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. font-size: 28rpx;
  73. color: #333;
  74. }
  75. .check {
  76. margin-top: 44rpx;
  77. border-radius: 38rpx;
  78. background-color: #fff;
  79. padding: 0;
  80. border: 2rpx solid rgba(151, 151, 151, 0.2);
  81. color: #333;
  82. font-size: 28rpx;
  83. height: 76rpx;
  84. }
  85. }
  86. </style>