【调度系统】广东民航医疗快线调度系统源代码
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
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>
<!--#include virtual="/inc/chkadmin.gds"-->
<!--#include virtual="/inc/function.gds"-->
<script language=javascript>
var IntroducerListArray=new Array()
<%
IntroducerSearchTXT=trim(Request("IntroducerSearchTXT"))
OA_CompetencyID=trim(Request("OA_CompetencyID"))
acc1=trim(Request("page"))
if acc1="" then acc1=1
acc2=1
i=0
acc3=0
Set rs = Server.CreateObject("ADODB.Recordset")
if len(IntroducerSearchTXT)>0 then
    sql="select IntroducerID,IntroducerName,IntroducerUnitID from IntroducerData where IntroducerState>0 and (IntroducerName like '%"&IntroducerSearchTXT&"%' or IntroducerTEL like '%"&IntroducerSearchTXT&"%' or IntroducerAdminName like '%"&IntroducerSearchTXT&"%') order by IntroducerID desc"
else
    sql="select IntroducerID,IntroducerName,IntroducerUnitID from IntroducerData where IntroducerState>0 order by IntroducerID desc"
end if
    rs.open Sql,objConn,1,1
    if not rs.eof then
        rs.pagesize=6
        rs.absolutepage=acc1
        acc2=rs.pagecount
        acc3=rs.recordcount
    end if
    do while not rs.Eof and i<6
        IntroducerID    = rs("IntroducerID")
        IntroducerName    = rs("IntroducerName")
        IntroducerUnitID= rs("IntroducerUnitID")
        %>
        IntroducerListArray[<%=i%>]=new Array("<%=IntroducerID%>","<%=IntroducerName%>")
        <%i=i+1
        rs.movenext
    loop
    rs.close()
%>
parent.JS_IntroducerList(IntroducerListArray,<%=acc1%>,<%=acc2%>,'<%=IntroducerSearchTXT%>',<%=acc3%>);
</script> 
<%Response.End%>