ann0707
2018-08-16 c9bc8ec61cff4076132f6396d99d383a2cdf5a03
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<template>
    <div class="loan-info-box">
        <x-header slot="header"
                  style="width:100%;height:46px;background-color: #ec6758"
                  title="修改成功"
                  :left-options="{backText: ''}">
        </x-header>
        <div>
            <div class="success_okandno">
                <div>
                    <i class="iconfont icon-roundcheckfill-copy"></i>
                </div>
                <h2>修改成功</h2>
            </div>
            <div class="bindingSuccee">
                <p>
                    您的交易密码已修改成功,请妥善保管。
                </p>
            </div>
            <div style="height: 20px"></div>
            <box gap="0 15px">
                <x-button type="primary" link="/bnd/loan/quota">我的贷款</x-button>
            </box>
            <div style="height: 20px"></div>
        </div>
    </div>
</template>
 
<script>
    import {XHeader, XButton, Box} from 'vux';
 
    export default {
        name: 'modifyPasswrodSuccess',
        components: {XHeader, XButton, Box}
    };
</script>
<style lang="less">
    @import "../../../style/mixin.less";
 
 
    .loan-info-box {
        background-color: @color-background-default;
        .vux-header {
            .color-linear-gradient(@color-primary-light, @color-primary, 90deg);
            .vux-header-left {
                .left-arrow:before {
                    border: solid 1px @color-white;
                    border-width: 2px 0 0 2px;
                }
            }
        }
        .success_okandno .iconfont {
            font-size: 6rem;
            color: #0092f1;
        }
    }
 
    .loan-info-box .weui-btn_primary {
        .color-linear-gradient(@color-primary-light, @color-primary, 90deg);
    }
 
    .loan-info-box .weui-btn_primary:not(.weui-btn_disabled):active {
        color: rgba(255, 255, 255, 0.6);
        background-color: rgb(241, 95, 79);;
    }
 
    .bindingSuccee {
        text-align: center;
        p {
            text-align: center;
            color: @color-text-third;
            font-size: @font-size-medium;
            width: 25rem;
            margin: 0 auto;
            span {
                color: @color-primary;
                display: inline-block;
 
            }
        }
    }
 
    .weui-msg__icon-area {
        margin-bottom: -1.2rem !important;
    }
 
    .success_okandno {
        width: 6.5rem;
        margin: 0 auto;
        padding: 3rem 0;
        div {
            text-align: center;
            height: 8rem;
        }
        img {
            width: 100%;
        }
        h2 {
            font-weight: normal;
            font-size: @font-size-primary;
            text-align: center;
        }
    }
 
    .loan-info-box .weui-wepay-flow, .loan-info-box .weui-wepay-flow-auto {
        padding: 0.83333rem 2.33333rem 2.5rem;
    }
 
    .slotRight_l {
        color: #fff;
        font-size: @font-size-medium;
        position: relative;
        top: -0.1rem;
    }
 
    .Failred {
        color: #ff4d53 !important;
    }
 
    .weui-btn:after {
        border: none !important;
    }
 
    .weui-btn {
        font-size: @font-size-primary !important;
    }
</style>