refundInProgress.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. 剩余21234分,若超时处理,退款申请将自动通过
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. </script>
  20. <style scoped lang="scss">
  21. .top-direction {
  22. padding: 36rpx 24rpx;
  23. border-radius: 16rpx;
  24. background-color: #fff;
  25. .direction-frist {
  26. display: flex;
  27. justify-content: space-between;
  28. align-items: center;
  29. font-size: 36rpx;
  30. font-weight: 500;
  31. .commodity-price{
  32. color: #F83224;
  33. }
  34. }
  35. .time {
  36. color: rgba(34, 34, 34, .6);
  37. font-size: 24rpx;
  38. margin-top: 20rpx;
  39. }
  40. .direction-last{
  41. margin-top: 32rpx;
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. font-size: 28rpx;
  46. color: #333;
  47. }
  48. .check{
  49. margin-top: 44rpx;
  50. border-radius: 38rpx;
  51. background-color: #fff;
  52. padding: 0;
  53. border: 2rpx solid rgba(151, 151, 151, .2);
  54. color: #333;
  55. font-size: 28rpx;
  56. height: 76rpx;
  57. }
  58. }
  59. </style>