liangjin
2021-03-25 19f91bd79fa4ce2c50dfb5b44b0ebfc4f01baeae
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="lxcode">
    <van-nav-bar title="支付宝拉新" left-text="返回" left-arrow @click-left="onClickLeft" style="line-height: 43px;">
        <i class="iconfont iconzuojiantou" slot="left" style="font-size: 25px;"></i>
    </van-nav-bar>
    <div class="lxcoed-bg">
        <img src="../../assets/zfblx/bg4.png" alt="">
    </div>
    <div class="lxcoed-code">
        <img src="../../assets/zfblx/bg2.png" alt="" style="">
        <div class="lxcoed-code-content">
            <img class="ewm-img" src="../../assets/zfblx/bg3.png" alt="">
            <img class="code-img" src="../../assets/zfblx/code.png" alt="">
        </div>
        <div class="lxcoed-code-text">
            支付宝拉新二维码
        </div>
    </div>
     <van-button round color="#896EDB" class="btn2" @click="bankHome">返回首页</van-button>
  </div>
</template>
 
<script>
export default {
    data() {
        return{
 
        }
    },
    created() {
 
    },
    methods: {
        onClickLeft() {
            this.$router.go(-1);
        },
        //返回首页
        bankHome() {
            this.$router.push("/main/product")
        }
    }
}
</script>
 
<style lang='less' scoped>
    .code-img{
        width: 86% !important;
        height: 86% !important;
        // position: absolute;
        margin-bottom: 4%;
    }
    .ewm-img{
        position: absolute;
        left: 0;
        right: 0;
        z-index: 2222;
    }
    .lxcode{
        background: #F3F4F5;
        min-height: 100%;
        text-align: center;
        img{
            width: 100%;
            height: 100%;
        }
    }
    .lxcoed-bg{
        width: 100%;
        height: 225px;
        // background: url('../../assets/zfblx/bg4.png');
        background-size: 100% 100%;
    }
    .lxcoed-code{
        width: 94%;
        height: 360px;
        margin: 0 3%;
        position: relative;
        // background: url("../../assets/zfblx/bg2.png");
        // background-size: 100% 100%;
        transform: translateY(-50%);
        overflow: hidden;
        // padding: 3px;
        text-align: center;
        line-height: 330px;
        img{
            width: 100%;
            height: 100%;
        }
        &-content{
            // width: 175px;
            width: 50%;
            margin: 0 25%;
            height: 175px;
            // background: url("../../assets/zfblx/bg3.png");
            background-size: 100% 100%;
            margin-top: 50px;
            // margin-left: 90px;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }
        &-text{
            width: 100%;
            margin-top: 66px;
            font-size: 14px;
            color: #333333;
            text-align: center;
            line-height: 20px;
            position: absolute;
            bottom: 55px;
        }
    }
    .btn2{
        // width: 280px;
        width: 86%;
        margin: 0 7%;
        height: 44px;
        margin-top: 20px;
        background:rgba(137,110,219,1);
       
        color: white;
         transform: translateY(-180px);
    }
 
</style>