admin
2021-12-09 f609ca35ee2946acd0ff04b7ac1aa61f75a2e4a1
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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>关于我们</title>
        <meta name="viewport" content="width=device-width, viewport-fit=cover, initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
 
        <style>
            body {
                margin: 0;
                padding: 0;
                background: #3C3C3C;
            }
 
            .item {
                height: 0.88rem;
                margin-top: 1px;
                padding-left: 0.3rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 0;
                background: #5C5C5C;
            }
 
            .item>.title {
                color: white;
                font-size: 0.28rem;
            }
 
            .item>img {
                margin-right: 0.3rem;
                height: 0.3rem;
                width: auto;
            }
        </style>
 
        <script>
            window.onresize = function() {
                document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
            };
            window.onresize();
        </script>
    </head>
    <body>
        <div style="width: 100%;background: #000000;height: 4.08rem;display: flex;align-items: center;justify-content: center;">
            <img src="img/top.png" style="width: 100%;height: 100%;" />
        </div>
 
 
 
 
        <div class="item" onclick="protocol()">
            <div class="title">用户服务协议</div>
            <img src="img/icon_array.png" />
        </div>
 
        <div class="item" onclick="privacy()">
            <div class="title">隐私政策</div>
            <img src="img/icon_array.png" />
        </div>
        
        <div class="item" onclick="tousu()">
            <div class="title">隐私投诉</div>
            <img src="img/icon_array.png" />
        </div>
 
        <div class="item" onclick="unregister()">
            <div class="title">账户注销</div>
            <img src="img/icon_array.png" />
        </div>
 
    </body>
    <script>
        function protocol() {
            // try {
            //     var params = yestv.getRequestBaseParams("");
            //     if (params != null) {
            //         params = JSON.parse(params);
            //         if (params.Channel != 'qq' && params.Channel != 'QQ') {
            //             window.location.href = "http://bwapp.flqapp.com:8089/BuWan/api_control_ios_bw.jsp"
            //         } else {
            //             window.location.href = "http://bwapp.flqapp.com:8089/BuWan/api_control_ios.jsp"
            //         }
            //     }
            // } catch (e) {
                window.location.href = "http://bwweb.yeshitv.com/user_protocol.html"
            // }
        }
 
        function privacy() {
            // try {
            //     var params = yestv.getRequestBaseParams("");
            //     if (params != null) {
            //         params = JSON.parse(params);
            //         if (params.Channel != 'qq' && params.Channel != 'QQ') {
            //             window.location.href = "http://bwapp.flqapp.com:8089/BuWan/user_protocol_bw.jsp"
            //         } else {
            //             window.location.href = "http://bwapp.flqapp.com:8089/BuWan/user_protocol.jsp"
            //         }
            //     }
            // } catch (e) {
                window.location.href = "http://bwweb.yeshitv.com/privacy.html"
            // }
        }
 
        function unregister() {
            window.location.href = "http://bwweb.yeshitv.com/unregister/index.html"
        }
        
        function tousu(){
            window.location.href ="tousu.html";
        }
    </script>
 
</html>