admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!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">
    function copyLink() {
        var href = window.location.href;
        yestv.copyText(href);
        yestv.toast("链接已复制到剪贴板");
    }
 
    try {
        var array = new Array();
        array.push({
            icon : 'http://img.flqapp.com/resource/icon_share.png',
            name : '复制链接',
            js : 'copyLink()'
        });
        yestv.addMenu(JSON.stringify(array));
    } catch (e) {
    }
 
    $("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>