【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-05-05 8a7dab004bc3eca7808d0cc196a329464402bbc9
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
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>
<% Response.charset = "utf-8"
refreshTime = 120
%>
<!--#include virtual="/inc/chkadmin.gds"-->
<!--#include virtual="/inc/function.gds"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>966120</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <meta http-equiv="refresh" content="<%=refreshTime%>">
        <script src="js/jquery.min.js"></script>
        <script type="text/javascript" src="js/scroll.js"></script>
        <style>
        html { overflow-x: hidden; overflow-y: hidden; }
        * { margin: 0; padding: 0;}
        .myscroll { margin-top:26px;height: 500px;font-size: 14px;width:100%;line-height: 25px;background-color: #000000;}
        .myscroll li { height: 26px; margin-left: 25px;list-style-type:none;}
        .myscroll a { color: #333; text-decoration: none;}
        .myscroll a:hover { color: #ED5565; text-decoration: underline;}
        </style>
    </head>
    <body bgcolor="#000000" onload="times();">
    <div style="color:#e7e7e7;line-height:26px;background-color:#343539;border-bottom:#000000 1px solid;"  id="_ss"></div>
     
     <script>
      var s = <%=refreshTime%>, t;
    function times(){
     s--;
    document.getElementById("_ss").innerHTML = "&nbsp;&nbsp;" + s+"秒后刷新";  
    t = setTimeout('times()', 1000);
    if ( s <= 0 ){
     s = 60;
     clearTimeout(t);
    }
    }
     </script>
 
 
 
        <script type="text/javascript">
        setTimeout(function() {JS_ajax("1");},100);//setTimeout 程序执行后500毫秒执行push,但是仅此一次。
        //setInterval(function() {JS_ajax("1");},60000);//六十秒后执行
        </script>
 
        <script type="text/javascript">
        /*JQ方法 请求函数的ajax*/  
        function Push() {
        $.ajax({  
      
            type: "POST",  
            url: "TV_Data.gds",//需要跳转到的界面 the page you want to post data  
            data: {  
                data: ''//要传给后台的数据 the data you should send to background  
            },  
            beforeSend: function() {},//在发送之前你可以进行相关操作 what you want to do before send  
            success: function(data) {  
                //需要执行的操作 execute it  
                if (data>0){autoPlay();}
            }
        })
        };
        
        /*javascript方法 请求函数的ajax*/  
        function JS_ajax(str)
        {
        var xmlhttp;
        page=parseInt(document.getElementById("page").value);
        if (page>3) {page=1;}
        zz=parseInt(document.getElementById("zz").value);
        if (zz>3) {location.reload(true);return false;}
        document.getElementById("page").value=page+1;
        document.getElementById("zz").value=zz+1;
        if (str=="")
          {
          document.getElementById("txtHint").innerHTML="";
          return;
          }
        if (window.XMLHttpRequest)
          {// code for IE7+, Firefox, Chrome, Opera, Safari
          xmlhttp=new XMLHttpRequest();
          }
        else
          {// code for IE6, IE5
          xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
          }
        xmlhttp.onreadystatechange=function()
          {
          if (xmlhttp.readyState==4 && xmlhttp.status==200)
            {
            document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
            }
          }
        xmlhttp.open("GET","TV_Data.gds?page="+page,true);
        xmlhttp.send();
        }
        </script>
        <script type="text/javascript">
        $(function(){
            $('.myscroll').myScroll({
                speed: 50, //数值越大,速度越慢
                rowHeight: 26 //li的高度
            });
        });
        </script>
    <input id="page" type="hidden" value="1">
    <input id="zz" type="hidden" value="1">
    <div id="txtHint" class="myscroll"><ul>
        <li>&nbsp;</li>
        <li>&nbsp;</li>
        <li>&nbsp;</li>
        <li>&nbsp;</li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul></div>
    </body>
</html>