admin
2018-12-25 4cb15e222cd7d099d533ccbeb7f9a8cd99bf180c
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
        
    <head>
        <meta charset="utf-8" />
        <link href="img/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
        <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
        <title>新手攻略</title>
        <!--css-->
        <link rel="stylesheet" type="text/css" href="css/DOUI.min.css"/>
        <style type="text/css">
            /*图片效果*/
            .imgstyle{ width: 100%; height: auto; display: block; }
            .animt_img{ animation: imgopc 1s; animation-fill-mode: both; animation-timing-function: ease; }
            @keyframes imgopc{ 0%{ opacity: 0; } 100%{ opacity: 1; } }
            /*APP下载*/
            .homeappwai{ width: 94%; height: 3.5rem; padding: 0 3%; position: fixed; left: 0; bottom: 0.5rem; background-color: rgba(0,0,0,0.75); z-index: 50; color: white; }
            .homeappimg{ width: 2.5rem; height: 2.5rem; margin-right: 0.3rem; }
            .homeappgo{ width: 4rem; height: 2rem; border-radius: 1rem; background-color: #E5005C; text-decoration: none; color: white; }
        </style>
        <!--js-->
        <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
        <script src="https://cdn.bootcss.com/vue/2.5.16/vue.min.js"></script>
        <script src="js/DOUI.min.js" type="text/javascript" charset="utf-8"></script>
    </head>
    
    <body class="displayNone">
        <div id="allwai" class="allwai font3" style="background-color: #FDD757;">
            
            <!--图片列表-->
            <div style="width: 100%; padding-bottom: 5rem; overflow: scroll;">
                <div style="width: 100%;height: auto;">
                    
                    <!--循环添加-->
                    <div v-for="item in imglist" style="width: 100%; height: auto;">
                        <img v-bind:src="item" class="imgstyle animt_img" onclick="return false"/>
                    </div>
                    
                </div>
            </div>
            
            <!--APP下载卡片-->
            <div v-if="inapp=='false'||inapp==false" class="homeappwai fboxRow Ycenter">
                <img class="homeappimg" src="img/list_load.png"/>
                <div>不只领优惠券,APP客户端还返利</div>
                <div class="flex1"></div>
                <a class="homeappgo fboxRow Xcenter Ycenter" href="http://a.app.qq.com/o/simple.jsp?pkgname=com.yeshi.ec.rebate">下载</a>
            </div>
            
        </div>
    </body>
    
    <script type="text/javascript">
        
        $("body").addClass("displayNone");
        
        //======================== 页面数据 ================================
        //数据请求接口
        var https = "http://flq.yeshitv.com";
        
        //图片内容信息
        var imgdata = {
            inapp: true, //是否在app内部打开
            id: null, //攻略id
            imglist: [], //图片列表
        };
        
        //图片数据vue实例化
        var alldata = new Vue({
            el: "#allwai",
            data: imgdata,
            //创建完毕
            created: function () { $("body").removeClass("displayNone"); },
            //数据节点渲染完毕
            updated: function () { var num_all = $('img').length; console.log("图片总张数:"+num_all); },
        });
        
        //获取地址栏传递参数
        var urldata =  doui.urlParamGet();
        //获取攻略id
        if (urldata.id) { imgdata.id = urldata.id; }
        else { doui.showToast("未获取到攻略id"); }
        //是否在app内部打开
        if (urldata.inApp) { imgdata.inapp = urldata.inApp; }
        
        
        
        //======================== 数据请求 ================================
        imglistGet();
        function imglistGet ()
        {
            doui.showLoading("获取攻略");
            //发送数据准备
            var myurl =  "../../api/h5/v1/strategy/strategyPicture";
            var mydata = doui.AjaxData({
                id: imgdata.id,
            });
            //发起请求
            $.get({ url:myurl, data:{id: imgdata.id}, success: function(res){
                res=JSON.parse(res);
                doui.hideLoading();
                if (res.code != 0) { doui.showToast(res.msg); }
                //向图片组中添加数据
                else { imgdata.imglist = res.data; }
              }});
        }
        
        
    </script>
    
</html>