moneyDestination.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <view class="">
  3. <u-popup
  4. :show="show"
  5. @close="$emit('close')"
  6. round="16rpx"
  7. @open="open"
  8. closeable
  9. closeOnClickOverlay
  10. >
  11. <view class="title"> 钱款去向 </view>
  12. <view class="radio-list">
  13. <view class="refund">
  14. <view class="money"> 退款金额 </view>
  15. <view class="commodity-price" style="color: #f83224">
  16. <text style="font-size: 20rpx">¥</text>
  17. <text>{{
  18. refundDetail.goods[0].refund.actual_refund_price.split(".")[0]
  19. }}</text
  20. >.
  21. <text style="font-size: 20rpx">{{
  22. refundDetail.goods[0].refund.actual_refund_price.split(".")[1]
  23. }}</text>
  24. </view>
  25. </view>
  26. <view class="refund">
  27. <view class="money"> 退款账户 </view>
  28. <view class="commodity-price" style="color: #222">
  29. {{ payType }}
  30. </view>
  31. </view>
  32. <u-steps
  33. direction="column"
  34. dot
  35. activeColor="#D8D8D8"
  36. inactiveColor="#D8D8D8"
  37. >
  38. <u-steps-item
  39. title="退款成功"
  40. desc="退款已原路退回,到账时间以平台处理时间为准"
  41. >
  42. </u-steps-item>
  43. <u-steps-item
  44. title="申请受理中"
  45. desc="您的退款申请团长已受理,请耐心等待"
  46. >
  47. </u-steps-item>
  48. <u-steps-item
  49. title="买家发起退款"
  50. desc="系统将会在1-2天提交处理,请耐心等待"
  51. ></u-steps-item>
  52. </u-steps>
  53. </view>
  54. <button class="btn">我知道了</button>
  55. </u-popup>
  56. </view>
  57. </template>
  58. <script>
  59. export default {
  60. props: {
  61. show: {
  62. typeof: Boolean,
  63. default: false,
  64. },
  65. refundDetail: {
  66. typeof: Object,
  67. default: () => {
  68. return {};
  69. },
  70. },
  71. },
  72. data() {
  73. return {
  74. value: "",
  75. };
  76. },
  77. computed: {
  78. payType() {
  79. if (this.refundDetail.pay_type == "balance") {
  80. return "账户余额";
  81. } else if (this.refundDetail.pay_type == "wxchat") {
  82. return "微信余额";
  83. } else {
  84. return "客服支付,退回原账户";
  85. }
  86. },
  87. },
  88. methods: {
  89. open() {},
  90. handleChange(name) {
  91. console.log(this.value);
  92. this.$emit("close", name);
  93. },
  94. },
  95. };
  96. </script>
  97. <style lang="scss" scoped>
  98. .title {
  99. text-align: center;
  100. font-size: 36rpx;
  101. color: #222;
  102. font-weight: 500;
  103. margin-top: 20rpx;
  104. }
  105. .radio-list {
  106. padding: 0 28rpx;
  107. margin-top: 40rpx;
  108. .refund {
  109. display: flex;
  110. justify-content: space-between;
  111. align-items: center;
  112. margin-bottom: 38rpx;
  113. .money {
  114. color: #555;
  115. font-size: 30rpx;
  116. }
  117. }
  118. }
  119. .radio {
  120. margin-bottom: 48rpx;
  121. }
  122. .btn {
  123. width: 94%;
  124. background-color: #fff;
  125. border: 2rpx solid #979797;
  126. border-radius: 44rpx;
  127. }
  128. ::v-deep .u-steps-item__content {
  129. margin-bottom: 70rpx;
  130. }
  131. </style>