success-template.php
2.41 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
<?php
use yii\helpers\Url;
$baseUrl = Url::base(true);
?>
<style>
#success .scan-image-div {
padding-top: 2.31rem;
text-align: center;
}
#success .scan-image {
width: 7.25rem;
height: 8.41rem;
margin: 0 auto;
}
#success .scan-button {
margin: 0 auto;
width: 15.75rem;
height: 2.81rem;
text-align: center;
line-height: 2.81rem;
font-size:1.19rem;
font-weight:400;
color:rgba(0,0,0,1);
padding-bottom: 2rem;
}
#success .scan-tip {
margin: 0 auto;
width: 85%;
height: 2.81rem;
text-align: left;
font-size:1rem;
font-weight:400;
color:rgba(51,51,51,1);
line-height:1.44rem;
padding: 0.5rem 0;
}
#success .btn-submit{
width:30%;
text-align:center;
height:2.81rem;
line-height:2.81rem;
background:rgba(0,188,112,1);
border-radius:0rem 0rem 0rem 0rem;
float: left;
font-size:1rem;
font-weight:400;
color:rgba(255,255,255,1);
}
#success .input-num {
line-height: 2rem;height: 2.41rem;width: 65%; background-color: #fff;float: left;padding-left: 0.5rem;font-size:1rem;
font-weight:400;
/*color:rgba(177,177,177,1);*/
}
</style>
<script id="success-template" type="text/template">
<div class="pages" id="success">
<div class="page">
<div class="page-content">
<div style="background: #fff">
<div class="scan-image-div">
<img src="<?=$baseUrl?>/i/check/success.png" class="scan-image"/>
</div>
<div class="scan-button">
防伪验证通过
</div>
</div>
<div style="background: #fff; margin-top:0.5rem">
<div class="scan-tip" style="padding-top: 1rem">
您可以继续输入商品提取码,查看商家录入的隐私信息。
</div>
<div class="scan-tip" style="padding-bottom: 1rem">
<input class="input-num" placeholder="输入商品提取码"/>
<span class="btn-submit">点击查看</span>
</div>
</div>
</div>
</div>
</div>
</script>