moneyDestination.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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"> {{ i18n.MoneyDirection }} </view>
  12. <view class="radio-list">
  13. <view class="refund">
  14. <view class="money"> {{ i18n.refundAmount }} </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"> {{ i18n.refundAccount }} </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="i18n.refundSuccessful"
  40. :desc="i18n.processingTime"
  41. >
  42. </u-steps-item>
  43. <u-steps-item
  44. :title="i18n.applicationReview"
  45. :desc="i18n.acceptedWait"
  46. >
  47. </u-steps-item>
  48. <u-steps-item
  49. :title="i18n.buyerRefund"
  50. :desc="i18n.processingWait"
  51. ></u-steps-item>
  52. </u-steps>
  53. </view>
  54. <button class="btn" @click="$emit('close')">{{ i18n.know }}</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. i18n() {
  79. return this.$t("index");
  80. },
  81. payType() {
  82. if (this.refundDetail.pay_type == "balance") {
  83. return "账户余额";
  84. } else if (this.refundDetail.pay_type == "wxchat") {
  85. return "微信余额";
  86. } else {
  87. return "客服支付,退回原账户";
  88. }
  89. },
  90. },
  91. methods: {
  92. handleChange(name) {
  93. console.log(this.value);
  94. this.$emit("close", name);
  95. },
  96. },
  97. };
  98. </script>
  99. <style lang="scss" scoped>
  100. .title {
  101. text-align: center;
  102. font-size: 36rpx;
  103. color: #222;
  104. font-weight: 500;
  105. margin-top: 20rpx;
  106. }
  107. .radio-list {
  108. padding: 0 28rpx;
  109. margin-top: 40rpx;
  110. .refund {
  111. display: flex;
  112. justify-content: space-between;
  113. align-items: center;
  114. margin-bottom: 38rpx;
  115. .money {
  116. color: #555;
  117. font-size: 30rpx;
  118. }
  119. }
  120. }
  121. .radio {
  122. margin-bottom: 48rpx;
  123. }
  124. .btn {
  125. width: 94%;
  126. background-color: #fff;
  127. border: 2rpx solid #979797;
  128. border-radius: 44rpx;
  129. }
  130. ::v-deep .u-steps-item__content {
  131. margin-bottom: 70rpx;
  132. }
  133. </style>