refusalToRefund.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view >
  3. <view class="top-direction">
  4. <view class="direction-frist">
  5. <view class="">
  6. 卖家拒绝了您的退款申请
  7. </view>
  8. </view>
  9. <view class="time">
  10. 拒绝理由拒绝理由拒绝理由拒绝理由拒绝理由
  11. </view>
  12. <view class="time">
  13. 2023-12-08 12:45
  14. </view>
  15. </view>
  16. <view class="direction-frist1">
  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. </view>
  27. </template>
  28. <script>
  29. </script>
  30. <style scoped lang="scss">
  31. .top-direction {
  32. padding: 36rpx 24rpx;
  33. border-radius: 16rpx;
  34. background-color: #fff;
  35. .direction-frist {
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: center;
  39. font-size: 36rpx;
  40. font-weight: 500;
  41. .commodity-price{
  42. color: #F83224;
  43. }
  44. }
  45. .time {
  46. color: rgba(34, 34, 34, .6);
  47. font-size: 24rpx;
  48. margin-top: 20rpx;
  49. }
  50. .direction-last{
  51. margin-top: 32rpx;
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. font-size: 28rpx;
  56. color: #333;
  57. }
  58. .check{
  59. margin-top: 44rpx;
  60. border-radius: 38rpx;
  61. background-color: #fff;
  62. padding: 0;
  63. border: 2rpx solid rgba(151, 151, 151, .2);
  64. color: #333;
  65. font-size: 28rpx;
  66. height: 76rpx;
  67. }
  68. }
  69. .direction-frist1 {
  70. display: flex;
  71. justify-content: space-between;
  72. align-items: center;
  73. font-size: 36rpx;
  74. font-weight: 500;
  75. margin-top: 20rpx;
  76. background-color: #fff;
  77. height: 100rpx;
  78. border-radius: 16rpx;
  79. padding: 0 24rpx;
  80. .commodity-price{
  81. color: #F83224;
  82. }
  83. }
  84. </style>