index.html
751 字节
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
<!DOCTYPE html>
<html lang="en">
{include file="public/head"/}
<link rel="stylesheet" href="__CDN__/assets/advertising/css/entry.css">
<style>
img{
max-width: 100% !important;
height: 100% !important;
}
.html{
margin-bottom: 1rem;
}
.btn{
width: 6.84rem;
position: fixed;
bottom: 0.1rem;
left: 0.34rem;
}
</style>
<body>
<div class="shop_entry">
<div class="html">
{$data.content}
</div>
<div class="btn" onclick="toEntry()">我要入驻</div>
</div>
{include file="public/js" /}
<script>
function toEntry() {
window.location.href = "{:url('enter_view')}"
};
</script>
</body>
</html>