moneyDestination.vue 2.1 KB

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