审查视图

public/themes/simpleboot3/portal/scenery_detail.html 1.9 KB
1 2 3 4
<!DOCTYPE html>
<html lang="en">

<head>
5 6 7 8 9
    <meta charset="UTF-8">
    <title>星探推荐</title>
    <link rel="stylesheet" href="__TMPL__/public/assets/css/enjoyment.css">
    <link rel="stylesheet" href="__TMPL__/public/assets/js/swiper4/swiper.min.css">
    <link rel="stylesheet" href="__TMPL__/public/assets/css/activity_wares.css">
10 11
</head>
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">
    <include file="public@header" />
    <main>
        <div class="container">
            <div class="wares clearfix">
                <div class="wares_left fl">
                    <img src="{:cmf_get_image_url($res.image_url)}" alt="">
                </div>
                <div class="wares_right fr">
                    <div class="wares_right_title">{$res.post_title}</div>
                    <div class="wares_right_price">
                        <h2>商品售价:
                            <p><span>{$res.price}</span></p>
                        </h2>
                    </div>
                    <div class="wares_right_text">
                        <p>
                            {$res.post_excerpt}
                        </p>
                    </div>
                    <a href="{$res.pay_url}">
zhangwei authored
33
                        <div class="wares_right_pay zixun">
34
                            立即前往咨询
35 36 37 38 39 40 41 42 43 44
                        </div>
                    </a>
                </div>
            </div>
        </div>
    </main>
    <include file="public@footer" />
    <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
    <script src="__TMPL__/public/assets/js/swiper4/swiper.min.js"></script>
    <script src="__TMPL__/public/assets/js/public.js"></script>
45 46
</body>
zhangwei authored
47 48 49 50 51 52 53 54 55
</html>
<script>
    $(function() {
        var flag = getUrlParam('flag');
        if (flag != '') {
            $('.zixun').text('立即前往购买');
        }
    });
</script>