refundInProgress.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view class="top-direction">
  3. <view class="direction-frist">
  4. <view class=""> 退款中 </view>
  5. <view class="commodity-price" v-if="refundDetail.goods.length > 0">
  6. <text style="font-size: 20rpx">¥</text>
  7. <text>{{
  8. refundDetail.goods[0].refund.refund_price.split(".")[0]
  9. }}</text
  10. >.
  11. <text style="font-size: 20rpx">{{
  12. refundDetail.goods[0].refund.refund_price.split(".")[1]
  13. }}</text>
  14. </view>
  15. </view>
  16. <!-- <view class="time"> 剩余2天12时34分,若超时处理,退款申请将自动通过 </view> -->
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. props: {
  22. refundDetail: {
  23. typeof: Object,
  24. default: () => {
  25. return {};
  26. },
  27. },
  28. },
  29. };
  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, 0.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, 0.2);
  65. color: #333;
  66. font-size: 28rpx;
  67. height: 76rpx;
  68. }
  69. }
  70. </style>