admin
2025-06-10 568c763084b926a6f2d632b7ac65b9ec8280752f
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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>消息列表</title>
        <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
        <script src="http://cdn.yeshitv.com/js/vue.min.js"></script>
        <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
        <script src="js/msg_list.js"></script>
        <script src="js/qwebchannel.js"></script>
        <script src="js/kpl.js"></script>
        <script src="js/http.js"></script>
        <style>
            
            body {
                max-width: 1060px;
                font-size: 13px;
                color: #000000;
                background: #FFFFFF;
                font-family: Microsfot YaHei,微软雅黑;
            }
            .msg{
                word-wrap: break-word;
            }
        </style>
    </head>
    <body>
        <div id="app">
        
         <div class="container">
             <div class="msg" v-for="(item,index) in msg_list">
                 {{item}}
             </div>
             
         </div>
        
        </div>
 
    </body>
</html>