claimRecord.asp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <!--#include file="Conn.asp"--><%Checklogin()%>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>管理区域</title>
  7. <link rel="stylesheet" href="css/common.css" type="text/css" />
  8. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  9. <script language="javascript" src="system/js/jquery-1.7.2.min.js"></script>
  10. <script type="text/javascript" src="js/js.js"></script>
  11. <script>
  12. function goSearch(){
  13. var keys=document.getElementById("keys").value;
  14. var myselect=document.getElementById("searcheType");
  15. var index=myselect.selectedIndex;
  16. var searcheType=myselect.options[index].value;
  17. location.href='?Keys='+escape(keys)+'&searcheType='+searcheType;
  18. }
  19. function keyDownSearch(){
  20. var e = window.event || event;
  21. if (e.keyCode == 13) {
  22. var keys=document.getElementById("keys").value;
  23. var myselect=document.getElementById("searcheType");
  24. var index=myselect.selectedIndex;
  25. var searcheType=myselect.options[index].value;
  26. location.href='?Keys='+escape(keys)+'&searcheType='+searcheType;
  27. }
  28. }
  29. </script>
  30. </head>
  31. <body class="clear">
  32. <!--#include file="panel.asp"-->
  33. <%
  34. Set Rs=Server.CreateObject("ADODB.RecordSet")
  35. Page = Request.QueryString("Page")
  36. Keys=Request.QueryString("Keys")
  37. Keyscode=TextEnCode(Keys)
  38. searcheType=Request.QueryString("searcheType")
  39. Select Case searcheType
  40. Case "1": filterStr="where originalEmp like '%"&Keyscode&"%'"
  41. Case "2": filterStr="where newEmp like '%"&Keyscode&"%'"
  42. Case "3": filterStr="where oldCode like '%"&Keyscode&"%'"
  43. Case "4": filterStr="where cs_id in (select id from customer where cs_code like '%"&Keyscode&"%')"
  44. Case Else:filterStr=""
  45. End Select
  46. %>
  47. <div id="man_zone">
  48. <form id="form1" method="post" action="?Keys=<%=Keyscode%>&Page=<%=Page%>&searcheType="<%=searcheType%> onSubmit="return false" >
  49. <div class="fastSelect clear">
  50. <H1>搜索条件</H1>
  51. <div class="inputSearch">
  52. <select name="searcheType" id="searcheType">
  53. <option value="">未筛选</option>
  54. <option value="1" <%If StrComp(searcheType,"1")=0 Then response.write "Selected=""Selected"""%>>原属业务员</option>
  55. <option value="2" <%If StrComp(searcheType,"2")=0 Then response.write "Selected=""Selected"""%>>新跟进业务员</option>
  56. <option value="3" <%If StrComp(searcheType,"3")=0 Then response.write "Selected=""Selected"""%>>原编号</option>
  57. <option value="4" <%If StrComp(searcheType,"4")=0 Then response.write "Selected=""Selected"""%>>新编号</option>
  58. </select>
  59. <input type="text" id="keys" class="inputTxt" value="<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>" onFocus="if(this.value == '<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>'){this.value='';}" onBlur="if(this.value == ''){this.value='<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>';}" onKeyDown="keyDownSearch();" /><input type="button" id="searchgo" class="searchgo" value="go" onClick="goSearch();" />
  60. </div>
  61. </div>
  62. <table class="teamStatistics table1" border="1px" bordercollapse="collapse" cellspacing="0" cellpadding="5" bordercolor="#DDD">
  63. <tr class="theader">
  64. <th>序号</th>
  65. <th>时间</th>
  66. <th>记录</th>
  67. <th>新编号</th>
  68. </tr>
  69. <tbody>
  70. <%
  71. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  72. Rs.Open "Select * from claimRecord "&filterStr&" order by claimTime DESC" ,Conn,1,1
  73. If Not Rs.Bof And Not Rs.Eof Then
  74. Rs.PageSize = 20
  75. If Page = "" Then Page = 1
  76. If Page = "end" Then Page = Rs.PageCount
  77. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  78. Page = Cint(Page)
  79. If Page > Rs.PageCount Then Page = Rs.PageCount
  80. Rs.AbsolutePage = Page
  81. TempNum = Rs.PageSize * (Page - 1)
  82. For i=1 To Rs.PageSize
  83. If Rs.Bof Or Rs.Eof Then Exit For
  84. TempNum=TempNum+1:classid=Rs(1)
  85. %>
  86. <tr>
  87. <td><%=TempNum%></td>
  88. <td><%=Rs("claimTime")%></td>
  89. <td><span style="color:#0099CC;"><%=Rs("newEmp")%></span> 认领了 <span style="color:#0099CC;"><%=Rs("originalEmp")%> </span>的客户(<%=Rs("oldCode")%>)</td>
  90. <td><%
  91. Rs1.Open "Select cs_code from customer where id="&Rs("cs_id"),conn,1,1
  92. If Not Rs1.bof and Not Rs1.eof Then
  93. Response.write Rs1("cs_code")
  94. End If
  95. Rs1.close
  96. %>
  97. </td>
  98. </tr>
  99. <%
  100. Rs.moveNext
  101. Next
  102. Else
  103. %>
  104. <tr>
  105. <td colspan="4">当前暂无认领记录</td>
  106. </tr>
  107. <%
  108. End If
  109. %>
  110. </tbody>
  111. <tfoot>
  112. <tr>
  113. <td colspan=4>
  114. <div class="showpagebox">
  115. <%
  116. If Rs.PageCount > 1 Then
  117. PageName="?Keys="&Keys&urlStr&"&searcheType="&searcheType&"&"
  118. Pagelen=3
  119. If Page>1 Then
  120. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  121. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  122. End If
  123. If Pagelen*2+1 >= Rs.PageCount Then
  124. StartPage=1:EndPage=Rs.PageCount
  125. Else
  126. If Page<=Pagelen+1 Then
  127. StartPage=1
  128. EndPage=Pagelen*2+1
  129. Else
  130. StartPage=Page-Pagelen
  131. EndPage=Page+Pagelen
  132. End If
  133. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  134. End If
  135. For i = StartPage To EndPage
  136. If i = Page Then
  137. Response.Write "<a class=""current"">"&i&"</a>"
  138. Else
  139. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  140. End If
  141. Next
  142. If Page<Rs.PageCount Then
  143. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  144. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  145. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  146. End If
  147. End If
  148. Rs.close
  149. %>
  150. </div>
  151. </td>
  152. </tr>
  153. </tfoot>
  154. </table>
  155. </form>
  156. <%
  157. Set Rs1=Nothing
  158. Set Rs=Nothing
  159. Conn.Close
  160. Set Conn=Nothing%>
  161. </div>
  162. </body>
  163. </html>