scenery_detail.html
2.0 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="__TMPL__/public/assets/css/swiper-3.4.2.min.css" />
<link rel="stylesheet" href="__TMPL__/public/assets/css/base.css" />
<link rel="stylesheet" href="__TMPL__/public/assets/css/index.css" />
<title>星探推荐详情</title>
</head>
<body>
<include file="public@header" />
<div class="index_fifteenth">
<div class="index_fifteenth_bg">
<div class="index_fifteenth_contant">
<div class="index_fifteenth_top">
<img src="{:cmf_get_image_url($res.image_url)}" alt="" />
</div>
<div class="index_fifteenth_one">
{$res.post_title}
</div>
<div class="index_fifteenth_three">
<div class="index_fifteenth_three_left">
商品售价:
</div>
<div class="index_fifteenth_three_right">
¥{$res.price}
</div>
</div>
<div class="index_fifteenth_four">
{$res.post_excerpt}
</div>
<a href="{$res.pay_url}">
<div class="index_fifteenth_five">立即前往咨询</div>
</a>
</div>
</div>
</div>
<include file="public@footer" />
</body>
<script src="__TMPL__/public/assets/js/base.js"></script>
<script src="__TMPL__/public/assets/js/jquery-2.1.0.js"></script>
<script src="__TMPL__/public/assets/js/swiper.min.js"></script>
<script src="__TMPL__/public/assets/js/public.js"></script>
<script>
$(function() {
var flag = getUrlParam('flag');
if (flag != '') {
$('.index_fifteenth_five').text('立即前往购买');
}
});
</script>
</html>