refundInProgress.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>{{ refundDetail.amount.split(".")[0] }}</text
  8. >.
  9. <text style="font-size: 20rpx">{{
  10. refundDetail.amount.split(".")[1]
  11. }}</text>
  12. </view>
  13. </view>
  14. <view class="time"> 剩余2天12时34分,若超时处理,退款申请将自动通过 </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. refundDetail: {
  21. typeof: Object,
  22. default: () => {
  23. return {};
  24. },
  25. },
  26. },
  27. };
  28. </script>
  29. <style scoped lang="scss">
  30. .top-direction {
  31. padding: 36rpx 24rpx;
  32. border-radius: 16rpx;
  33. background-color: #fff;
  34. .direction-frist {
  35. display: flex;
  36. justify-content: space-between;
  37. align-items: center;
  38. font-size: 36rpx;
  39. font-weight: 500;
  40. .commodity-price {
  41. color: #f83224;
  42. }
  43. }
  44. .time {
  45. color: rgba(34, 34, 34, 0.6);
  46. font-size: 24rpx;
  47. margin-top: 20rpx;
  48. }
  49. .direction-last {
  50. margin-top: 32rpx;
  51. display: flex;
  52. justify-content: space-between;
  53. align-items: center;
  54. font-size: 28rpx;
  55. color: #333;
  56. }
  57. .check {
  58. margin-top: 44rpx;
  59. border-radius: 38rpx;
  60. background-color: #fff;
  61. padding: 0;
  62. border: 2rpx solid rgba(151, 151, 151, 0.2);
  63. color: #333;
  64. font-size: 28rpx;
  65. height: 76rpx;
  66. }
  67. }
  68. </style>