submit-template.php
1.87 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
<?php
use yii\helpers\Url;
$baseUrl = Url::base(true);
?>
<style>
#submit .page-content {
background-color: #fff;
}
#submit .scan-image-div {
padding-top: 3.52rem;
text-align: center;
}
#submit .scan-image {
width: 7.78rem;
height: 7.78rem;
margin: 0 auto;
}
#submit .scan-button {
margin: 0 auto;
margin-top: 3rem;
width: 15.75rem;
height: 2.81rem;
background: url(<?=$baseUrl?>/i/check/submit_btn.png) center no-repeat #ffffff;
color: #FFF;
text-align: center;
line-height: 2.81rem;
font-size:1.06rem;
font-weight:400;
}
#submit .title-pic {
font-size:1.13rem;
font-weight:500;
color:rgba(0,0,0,1);
line-height:1.5rem;
}
#submit .div-tip {
width: 10rem;
height: 10rem;
margin: 0 auto;
margin-top: 2.5rem;
text-align: center;
}
#submit .tip-font {
font-size:0.88rem;
font-weight:400;
color:rgba(189,189,189,1);
line-height:1.5rem;
}
</style>
<script id="submit-template" type="text/template">
<div class="pages" id="submit">
<div class="page">
<div class="page-content">
<div class="scan-image-div">
<img src="<?=$baseUrl?>/i/check/upload_phone.png" class="scan-image"/>
<div class="title-pic">点击拍照二维码</div>
</div>
<div class="div-tip">
<span class="tip-font">
请移动手机靠近二维码<br>
放大二维码区域并对焦
</span>
</div>
<div class="scan-button">
提交验证
</div>
</div>
</div>
</div>
</script>