123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <template>
- <view class="">
- <u-popup :show="show" @close="$emit('close')" round="16rpx" @open="open" closeable closeOnClickOverlay>
- <view class="title">
- 钱款去向
- </view>
- <view class="radio-list">
- <view class="refund">
- <view class="money">
- 退款金额
- </view>
- <view class="commodity-price" style="color: #f83224;">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- <view class="refund">
- <view class="money">
- 退款账户
- </view>
- <view class="commodity-price" style="color: #222;">
- 微信余额
- </view>
- </view>
- <u-steps direction="column" dot activeColor="#D8D8D8" inactiveColor="#D8D8D8">
- <u-steps-item title="退款成功" desc="退款已原路退回到您的余额,到账时间以平台处理时间为准">
- </u-steps-item>
- <u-steps-item title="申请受理中" desc="您的退款申请团长已受理,请耐心等待">
- </u-steps-item>
- <u-steps-item title="买家发起退款" desc="系统将会在1-2天提交处理,请耐心等待"></u-steps-item>
- </u-steps>
- </view>
- <button class="btn">我知道了</button>
- </u-popup>
- </view>
- </template>
- <script>
- export default {
- props: {
- show: {
- typeof: Boolean,
- default: false
- }
- },
- data() {
- return {
- value: '',
- }
- },
- methods: {
- open() {},
- handleChange(name) {
- console.log(this.value)
- this.$emit('close', name)
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .title {
- text-align: center;
- font-size: 36rpx;
- color: #222;
- font-weight: 500;
- margin-top: 20rpx;
- }
- .radio-list {
- padding: 0 28rpx;
- margin-top: 40rpx;
- .refund{
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 38rpx;
- .money{
- color: #555;
- font-size: 30rpx;
- }
- }
- }
- .radio {
- margin-bottom: 48rpx;
- }
- .btn{
- width: 94%;
- background-color: #fff;
- border: 2rpx solid #979797;
- border-radius: 44rpx;
- }
- ::v-deep .u-steps-item__content{
- margin-bottom: 70rpx;
- }
- </style>
|