ss
重庆迈尖科技有限公司
2020-06-16 b67f2c4fce992a818f287783ae7029a0b03509d3
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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>数据预览</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
        <link rel="stylesheet" type="text/css" href="./css/base.css" />
        <link rel="stylesheet" type="text/css" href="./css/datamain.css" />
        <script>
            window.onresize = function() {
                document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
            };
            window.onresize();
        </script>
        <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
        <script src="http://img.flqapp.com/resource/js/app2019112217.js"></script>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    </head>
    <body>
        <div id="root">
            <div class="div_list">
                <div class="div_items" v-for="(item, index) in dataList" @click="touchindex(index)">
                    <div class="itemsTop">
                        <div class="title">{{item}}</div>
                        <img src="img/icon_right_arrow.png">
                    </div>
                    <div class="itemsLine" :class="{checked:index==n}"></div>
                </div>
            </div>
            <div class="desc">更多预览开放中...</div>
        </div>
    </body>
 
    <script>
        // "http://api.flqapp.com";
        var host = "http://api.flqapp.com";
        var host1 = "http://apph5.banliapp.com";
        $(function() {
            var app = new Vue({
                el: '#root',
                data: {
                    n: 4,
                    dataList: ['我的页面预览',
                        '资金页面预览',
                        '提现记录页面预览',
                        '订单推送预览',
                        '到账数据预览'
                    ]
                },
                watch: {
 
                },
                methods: {
                    touchindex: function(index) {
                        switch (index) {
                            case 0:
                                yesApp.jumpWeb(host1 + '/AppInside/dataPreview/myPreview.html', null)
                                break;
                            case 1:
                                yesApp.jumpWeb(host1 + '/AppInside/dataPreview/fund.html', null)
                                break;
                            case 2:
                                yesApp.jumpWeb(host1 + '/AppInside/dataPreview/txRecord.html', null)
                                break;
                            case 3:
                                yesApp.jumpWeb(host1 + '/AppInside/dataPreview/orderPush.html', null)
                                break;
                            case 4:
                                yesApp.jumpWeb(host1 + '/AppInside/dataPreview/receivedData.html', null)
                                break;
                            default:
                                break;
                        }
                    }
                }
            });
        });
    </script>
</html>