MrShi
2025-09-05 2372466eb880ab5dcbaccfbddd90241de49b8f17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<template>
    <view class="success">
        <image src="/static/icon/ic_success@2x.png" mode="widthFix"></image>
        <view class="success-a">申请提现成功,等待系统处理</view>
        <view class="success-b">预计2小时内到账</view>
        <!-- <view class="success-info">
            <view class="success-info-item">
                <text>提现金额</text>
                <text>¥1000.00</text>
            </view>
            <view class="success-info-item">
                <text>提现方式</text>
                <text>微信领钱</text>
            </view>
        </view> -->
        <view class="success-btn" @click="goHome">回到首页</view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                price: ''
            };
        },
        methods: {
            goHome() {
                uni.switchTab({
                    url: '/pages/index/index'
                })
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .success {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        image {
            width: 180rpx;
            height: 180rpx;
            margin-top: 180rpx;
        }
        .success-a {
            font-weight: 500;
            font-size: 36rpx;
            color: #111111;
            margin-top: 40rpx;
        }
        .success-b {
            font-weight: 400;
            font-size: 26rpx;
            color: #999999;
            margin-top: 20rpx;
        }
        .success-info {
            width: 552rpx;
            padding: 30rpx;
            box-sizing: border-box;
            background: #F7F7F7;
            border-radius: 16rpx;
            margin-top: 60rpx;
            .success-info-item {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 30rpx;
                &:last-child {
                    margin: 0 !important;
                }
                text {
                    &:nth-child(1) {
                        font-weight: 400;
                        font-size: 28rpx;
                        color: #999999;
                    }
                    &:nth-child(2) {
                        font-weight: 400;
                        font-size: 28rpx;
                        color: #222222;
                    }
                }
            }
        }
        .success-btn {
            width: 200rpx;
            height: 72rpx;
            line-height: 72rpx;
            text-align: center;
            font-weight: 400;
            font-size: 28rpx;
            color: #5BBE38;
            border-radius: 36rpx;
            margin-top: 80rpx;
            border: 1rpx solid #5BBE38;
        }
    }
</style>