refundInProgress.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <view class="top-direction">
  3. <view class="direction-frist">
  4. <view class=""> {{ i18n.orderRefunding }} </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. computed: {
  30. i18n() {
  31. return this.$t("index");
  32. },
  33. },
  34. };
  35. </script>
  36. <style scoped lang="scss">
  37. .top-direction {
  38. padding: 36rpx 24rpx;
  39. border-radius: 16rpx;
  40. background-color: #fff;
  41. .direction-frist {
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. font-size: 36rpx;
  46. font-weight: 500;
  47. .commodity-price {
  48. color: #f83224;
  49. }
  50. }
  51. .time {
  52. color: rgba(34, 34, 34, 0.6);
  53. font-size: 24rpx;
  54. margin-top: 20rpx;
  55. }
  56. .direction-last {
  57. margin-top: 32rpx;
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. font-size: 28rpx;
  62. color: #333;
  63. }
  64. .check {
  65. margin-top: 44rpx;
  66. border-radius: 38rpx;
  67. background-color: #fff;
  68. padding: 0;
  69. border: 2rpx solid rgba(151, 151, 151, 0.2);
  70. color: #333;
  71. font-size: 28rpx;
  72. height: 76rpx;
  73. }
  74. }
  75. </style>