refundSuccessful.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view class="top-direction">
  3. <view class="direction-frist">
  4. <view class=""> 退款成功 </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=""> 退款余额 </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')">查看钱款去向</button>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. props: {
  36. refundDetail: {
  37. typeof: Object,
  38. default: () => {
  39. return {};
  40. },
  41. },
  42. },
  43. };
  44. </script>
  45. <style scoped lang="scss">
  46. .top-direction {
  47. padding: 36rpx 24rpx;
  48. border-radius: 16rpx;
  49. background-color: #fff;
  50. .direction-frist {
  51. display: flex;
  52. justify-content: space-between;
  53. align-items: center;
  54. font-size: 36rpx;
  55. font-weight: 500;
  56. .commodity-price {
  57. color: #f83224;
  58. }
  59. }
  60. .time {
  61. color: rgba(34, 34, 34, 0.6);
  62. font-size: 24rpx;
  63. margin-top: 20rpx;
  64. }
  65. .direction-last {
  66. margin-top: 32rpx;
  67. display: flex;
  68. justify-content: space-between;
  69. align-items: center;
  70. font-size: 28rpx;
  71. color: #333;
  72. }
  73. .check {
  74. margin-top: 44rpx;
  75. border-radius: 38rpx;
  76. background-color: #fff;
  77. padding: 0;
  78. border: 2rpx solid rgba(151, 151, 151, 0.2);
  79. color: #333;
  80. font-size: 28rpx;
  81. height: 76rpx;
  82. }
  83. }
  84. </style>