my_friend_f.html
4.7 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<script src="../../assets/js/fontsize.js"></script>
<link rel="stylesheet" href="../../assets/css/api.css"/>
<link rel="stylesheet" href="../../assets/icon/iconfont.css">
<title></title>
<style>
.friend_top {
background: url("../../assets/image/friend.png") no-repeat;
background-size: cover;
height: 4.55rem;
}
.friend_box {
width: 86%;
margin: -3.26rem auto 0 auto;
background-color: #fff;
overflow: hidden;
}
.friend_box_img {
background: url("../../assets/image/firend1.jpg");
width: 63%;
height: 2.28rem;
line-height: 2.28rem;
text-align: center;
margin: 0.53rem auto 0.24rem auto;
background-size: cover;
font-size:15px;
color: #fff;
}
.friend_price {
font-size: 36px;
}
.friend_tips {
font-size: 12px;
color: #424242;
text-align: center;
}
.friend_input_box {
margin: 0.56rem auto;
width: 63%;
}
.friend_input {
border-bottom: 1px solid #ededed;
font-size: 12px;
color: #424242;
margin-bottom: 0.4rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.friend_input input {
padding: 0.2rem 0;
width: 50%;
flex: 1;
}
.friend_input::-webkit-input-placeholder {
color: #C2C1C3;
font-size:12px;
}
.friend_code {
border: 1px solid #858485;
padding: 0.08rem 0.13rem;
border-radius: 0.16rem;
color: #858485;
font-size: 10px;
text-align: center;
}
.friend_btn {
width: 63%;
margin: 0 auto;
background-color: #dbb25f;
color: #fff;
font-size: 15px;
text-align: center;
padding: 0.17rem 0;
border-radius: 0.16rem;
}
</style>
</head>
<body>
<div id="app">
<div class="friend_top"></div>
<div class="friend_box">
<div class="friend_box_img">
<span>送</span><span class="friend_price">1000</span><span>元消费金</span>
</div>
<div class="friend_tips">健康提升新选择,为健康为投资</div>
<div class="friend_input_box">
<div class="friend_input"><input type="text" placeholder="请输入手机号"></div>
<div class="friend_input"><input type="text" placeholder="请输入验证码">
<span v-if="show" @click="getCode" class="friend_code">获取验证码</span>
<span v-else class="friend_code">{{count}}S</span>
</div>
</div>
<div class="friend_btn">立即领取</div>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="../../assets/js/api.js"></script>
<script type="text/javascript" src="../../assets/js/public.js"></script>
<script type="text/javascript" src="../../assets/js/fastclick.js"></script>
<script>
new FastClick(document.body);
</script>
<script type="text/javascript" src="../../assets/js/vue.min.js"></script>
<script type="text/javascript" src="../../assets/js/axios.min.js"></script>
<script type="text/javascript" src="../../assets/icon/iconfont.js"></script>
<script>
var app = new Vue({
el: '#app',
data: {
show: true,
count: '',
timer: null,
},
created: function () {
apiready = function () {
}
},
methods: {
getCode: function () {
const TIME_COUNT = 60;
if (!app.timer) {
app.count = TIME_COUNT;
app.show = false;
app.timer = setInterval(function () {
if (app.count > 0 && app.count <= TIME_COUNT) {
app.count--;
} else {
app.show = true;
clearInterval(this.timer);
app.timer = null;
}
}, 1000)
}
},
}
})
</script>