doum
11 小时以前 6e56c64e4b6b77b8acc61d34392c1fa0418ff499
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
105
106
107
<template>
    <view class="success">
        <view class="icon">
            <image src="/pagesA/static/ic_paysuccess@2x.png" mode="widthFix"></image>
        </view>
        <view class="info">
            <text>提交成功</text>
            <text>请耐心等待平台审核</text>
        </view>
        <view class="btns">
            <view class="btns-a" @click="jumpShopIndex()">返回</view>
            <view class="btns-b"  @click="jumpDetail()">查看详情</view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                id:null
            };
        },
        onLoad(options){
            this.id = options.id
        },
        methods:{
            jumpDetail(){
                uni.redirectTo({
                    url: '/pagesA/pages/withdrawal-details/withdrawal-details?id='+this.id
                })
            },
            jumpShopIndex(){
                uni.navigateBack({
                    delta:1
                })
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .success {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 200rpx;
        box-sizing: border-box;
        .icon {
            width: 180rpx;
            height: 180rpx;
            image {
                width: 100%;
            }
        }
        .info {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 32rpx;
            text {
                &:nth-child(2) {
                    font-weight: 500;
                    font-size: 36rpx;
                    color: #222222;
                }
                &:nth-child(2) {
                    font-weight: 400;
                    font-size: 26rpx;
                    color: #999999;
                    margin-top: 20rpx;
                }
            }
        }
        .btns {
            display: flex;
            align-items: center;
            margin-top: 76rpx;
            .btns-a {
                width: 200rpx;
                height: 72rpx;
                line-height: 72rpx;
                text-align: center;
                font-weight: 400;
                font-size: 28rpx;
                color: #666666;
                margin-right: 24rpx;
                border-radius: 36rpx;
                border: 1rpx solid rgba(153,153,153,0.5);
            }
            .btns-b {
                width: 200rpx;
                height: 72rpx;
                line-height: 72rpx;
                text-align: center;
                border-radius: 36rpx;
                font-weight: 400;
                font-size: 28rpx;
                color: #004096;
                border: 1rpx solid #004096;
            }
        }
    }
</style>