refundSuccessful.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view class="top-direction">
  3. <view class="direction-frist">
  4. <view class="">
  5. 退款成功
  6. </view>
  7. <view class="commodity-price">
  8. <text style="font-size: 20rpx;">¥</text>
  9. <text>133</text>.
  10. <text style="font-size: 20rpx;">22</text>
  11. </view>
  12. </view>
  13. <view class="time">
  14. 2023年12月4号 18:23
  15. </view>
  16. <view class="direction-last">
  17. <view class="">
  18. 退款余额
  19. </view>
  20. <view class="commodity-price">
  21. <text style="font-size: 20rpx;">¥</text>
  22. <text>133</text>.
  23. <text style="font-size: 20rpx;">22</text>
  24. </view>
  25. </view>
  26. <button class="check" @click="$emit('checkMoney')">查看钱款去向</button>
  27. </view>
  28. </template>
  29. <script>
  30. </script>
  31. <style scoped lang="scss">
  32. .top-direction {
  33. padding: 36rpx 24rpx;
  34. border-radius: 16rpx;
  35. background-color: #fff;
  36. .direction-frist {
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. font-size: 36rpx;
  41. font-weight: 500;
  42. .commodity-price{
  43. color: #F83224;
  44. }
  45. }
  46. .time {
  47. color: rgba(34, 34, 34, .6);
  48. font-size: 24rpx;
  49. margin-top: 20rpx;
  50. }
  51. .direction-last{
  52. margin-top: 32rpx;
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. font-size: 28rpx;
  57. color: #333;
  58. }
  59. .check{
  60. margin-top: 44rpx;
  61. border-radius: 38rpx;
  62. background-color: #fff;
  63. padding: 0;
  64. border: 2rpx solid rgba(151, 151, 151, .2);
  65. color: #333;
  66. font-size: 28rpx;
  67. height: 76rpx;
  68. }
  69. }
  70. </style>