country.asp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. <!--#include file="Conn.asp"--><%Checklogin("信息管理")%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>管理区域</title>
  6. <link rel="stylesheet" href="css/common.css" type="text/css" />
  7. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  8. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  9. <script type="text/javascript" src="js/js.js"></script>
  10. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. <script type="text/javascript" src="js/Searchproduct.js"></script>
  12. </head>
  13. <body>
  14. <div id="man_zone">
  15. <%
  16. Act = Request.QueryString("act")
  17. If act = "save" Then
  18. Set Rs = Server.CreateObject("ADODB.RecordSet")
  19. isedit = False
  20. id = Request.Form("id")
  21. If id<>"" And IsNumeric(id) Then isedit = True
  22. productId=Request.Form("productId")
  23. num=Request.Form("num")
  24. price=Request.Form("price")
  25. If isedit Then
  26. Rs.Open "Select * From country Where id="& id,Conn,1,3
  27. Rs("addtime")=now()
  28. Rs.Update:Rs.Close:Set Rs=Nothing
  29. productId=split(productId,",")
  30. numarr=split(num,",")
  31. pricearr=split(price,",")
  32. Conn.execute("delete from price where AreaId="&id&"")
  33. For i=0 to ubound(productId)
  34. If numarr(i)="" then numarr(i)=0
  35. If pricearr(i)="" then pricearr(i)=0
  36. Conn.execute("insert into price (productId,AreaId,num,price) values("&productId(i)&","&id&","&numarr(i)&",'"&pricearr(i)&"')")
  37. Next
  38. Conn.Close:Set Conn=Nothing
  39. Page = Request.QueryString("Page")
  40. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  41. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  42. Response.Redirect "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  43. Else
  44. Rs.Open "country",Conn,1,3
  45. Rs.AddNew
  46. Rs("addtime")=now()
  47. Rs.Update:Rs.Close
  48. productId=split(productId,",")
  49. numarr=split(num,",")
  50. pricearr=split(price,",")
  51. For i=0 to ubound(productId)
  52. If numarr(i)="" then numarr(i)=0
  53. If pricearr(i)="" then pricearr(i)=0
  54. Conn.execute("insert into price (productId,AreaId,num,price) values("&productId(i)&","&id&","&numarr(i)&",'"&pricearr(i)&"')")
  55. Next
  56. Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  57. Response.Redirect "?"
  58. End If
  59. Conn.Close:Set Conn=Nothing
  60. Response.End
  61. End If 'end save
  62. If Act = "add" Or Act = "edit" Then
  63. id = Request.QueryString("id")
  64. isedit = False
  65. If id<>"" And IsNumeric(id) Then isedit=True
  66. If isedit Then
  67. Set Rs = Server.CreateObject("ADODB.RecordSet")
  68. Rs.Open "Select * From country Where id="&id,Conn,1,1
  69. If Not Rs.Bof And Not Rs.Eof Then
  70. countryCode=TextUnCode(Rs("countryCode"))
  71. countryName=TextUnCode(Rs("countryName"))
  72. addtime=Rs("addtime")
  73. Else
  74. isedit = False
  75. End If
  76. Rs.Close:Set Rs=Nothing
  77. End If
  78. Page = Request.QueryString("Page")
  79. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  80. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  81. hrefstr = "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  82. %>
  83. <form name="form1" method="post" action="<%=hrefstr%>&act=save">
  84. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  85. <tbody>
  86. <tr>
  87. <th width="8%">国家</th>
  88. <td ><input type="text" id="countryName" name="countryName" readonly value="<%=countryName%>" class="txt1" /><input type="hidden" name="id" value="<%=id%>" /></td>
  89. </tr>
  90. <tr>
  91. <th width="8%">区号</th>
  92. <td><input type="text" id="countryCode" name="countryCode" readonly value="<%=countryCode%>" class="txt1" /></td>
  93. </tr>
  94. <tr>
  95. <th width="8%">更新日期</th>
  96. <td><%=addtime%></td>
  97. </tr>
  98. <tr>
  99. <th width="8%">售价管理</th>
  100. <td>
  101. <div class="prowapper">
  102. <%Set Rs1 = Server.CreateObject("ADODB.RecordSet")
  103. Rs1.Open "select id,ProductName,ProductImg,unit from Products where id in(select productId from price where AreaId="&id&")",conn,1,1
  104. DO while not Rs1.bof and not Rs1.eof
  105. %>
  106. <div class="proitem">
  107. <div class="prodelet"></div>
  108. <div class="proname"><%=Rs1("ProductName")%></div>
  109. <div class="propic"><img src="<%=Rs1("ProductImg")%>"></div>
  110. <div class="proprice">
  111. <%Set Rs2= Server.CreateObject("ADODB.RecordSet")
  112. Rs2.open "Select num,price from Price where productId="&Rs1("id")&" and AreaId="&id&" order by num asc",conn,1,1
  113. Do while not Rs2.bof and not Rs2.eof
  114. %>
  115. <div class="priceitem"><input type="hidden" name="productId" value="<%=Rs1("id")%>"><label>≥</label><input type="number" autocomplete="off" class="txt3 num" name="num" value="<%=Rs2("num")%>"><label class='unit'><%=Rs1("unit")%></label> <label>售价</label><input type="text" class="txt3 price" autocomplete="off" name="price" value="<%=Rs2("price")%>"><label>RMB</label> <span class="additem"></span><span class="delitem"></span><span class="note"></span></div>
  116. <% Rs2.moveNext
  117. loop
  118. Rs2.close
  119. Set Rs2=Nothing
  120. %>
  121. </div>
  122. </div>
  123. <% Rs1.moveNext
  124. loop
  125. Rs1.close
  126. Set Rs1=Nothing
  127. %>
  128. </div>
  129. </td>
  130. </tr>
  131. <tr>
  132. <th width="8%">产品添加</th>
  133. <td class="productinput"><input type="text" id="productSearch" class="fastsearch">
  134. <div id="productlist" class="productlist"><ul></ul></div>
  135. </td>
  136. </tr>
  137. <tr>
  138. <th></th>
  139. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /> <input type="reset" name="save" id="save" value="重置" class="btn1" /> <input type="button" value="返回" class="btn1" onClick="location.href='<%=hrefstr%>'" /></td>
  140. </tr>
  141. </tbody>
  142. </table>
  143. </form>
  144. </div>
  145. </body>
  146. </html>
  147. <%
  148. Response.End
  149. End If 'End add
  150. If Act="postchk" Then
  151. Keys = Server.UrlEnCode(Request.QueryString("Keys"))
  152. Ord = Server.UrlEnCode(Request.QueryString("Ord"))
  153. Page = Request.QueryString("Page")
  154. chkact = Request.Form("chkact")
  155. SqlStr = ""
  156. For i = 1 To Request.Form("chkbox").Count
  157. If SqlStr<>"" Then
  158. SqlStr = SqlStr & " Or id="&Request.Form("chkbox")(i)
  159. Else
  160. SqlStr = " Where id="&Request.Form("chkbox")(i)
  161. End If
  162. Next
  163. SqlStr = "Delete From country"&SqlStr
  164. Conn.Execute(SqlStr):Conn.Close:Set Conn=Nothing
  165. Response.Redirect "?Keys="&Keys&"&Ord="&Ord&"&Page="&Page
  166. Response.End
  167. End If 'End postchk
  168. Keys=Request.QueryString("Keys")
  169. Keyscode=TextEnCode(Keys)
  170. Ord=Request.QueryString("Ord")
  171. Page = Request.QueryString("Page")
  172. If Ord<>"" Then
  173. OrdStr=Ord&","
  174. Else
  175. OrdStr=""
  176. End If
  177. Set Rs=Server.CreateObject("ADODB.RecordSet")
  178. Rs.Open "Select * From country Where countryName like '%"&Keyscode&"%' or countryCode like '%"&Keyscode&"%' Order By id Desc",Conn,1,1
  179. Keys=Server.UrlEnCode(Keys)
  180. Ord=Server.UrlEnCode(Ord)
  181. hrefstr = "?keys="&Keys
  182. %>
  183. <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>" onSubmit="return false" />
  184. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  185. <thead>
  186. <tr>
  187. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  188. <th width="6%">序号</th>
  189. <th width="30%">国家</th>
  190. <th width="30%">区号</th>
  191. <th width="30%">操作</th>
  192. </tr>
  193. </thead>
  194. <tbody>
  195. <%
  196. If Not Rs.Bof And Not Rs.Eof Then
  197. Rs.PageSize = 20
  198. If Page = "" Then Page = 1
  199. If Page = "end" Then Page = Rs.PageCount
  200. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  201. Page = Cint(Page)
  202. If Page > Rs.PageCount Then Page = Rs.PageCount
  203. Rs.AbsolutePage = Page
  204. TempNum = Rs.PageSize * (Page - 1)
  205. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  206. For i=1 To Rs.PageSize
  207. If Rs.Bof Or Rs.Eof Then Exit For
  208. TempNum=TempNum+1:classid=Rs(1)
  209. %>
  210. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  211. <td align="center"><input type="checkbox" name="chkbox" value="<%=Rs(0)%>" /></td>
  212. <td align="center"><%=TempNum%></td>
  213. <td align="center"><%=Rs("countryName")%></td>
  214. <td align="center"><%=Rs("countryCode")%></td>
  215. <td align="center"><a href="?Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>&act=edit&id=<%=Rs(0)%>" class="ico_edit ico">修改</a></td>
  216. </tr>
  217. <%
  218. Rs.MoveNext
  219. Next
  220. Else
  221. If Keys="" Then
  222. %>
  223. <tr>
  224. <td align="center" colspan="5">Sorry,当前暂无信息</td>
  225. </tr>
  226. <%
  227. Else
  228. %>
  229. <tr>
  230. <td align="center" colspan="5"><a href="?">Sorry,没有找到“<%=Keyscode%>”相关的信息,点击返回</a></td>
  231. </tr>
  232. <%
  233. End If
  234. End If
  235. %>
  236. </tbody>
  237. <tfoot>
  238. <tr>
  239. <td colspan="5">
  240. <div class="showpagebox">
  241. <%
  242. If Rs.PageCount > 1 Then
  243. PageName="?Keys="&Keys&"&Ord="&Ord&"&"
  244. Pagelen=3
  245. If Page>1 Then
  246. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  247. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  248. End If
  249. If Pagelen*2+1 >= Rs.PageCount Then
  250. StartPage=1:EndPage=Rs.PageCount
  251. Else
  252. If Page<=Pagelen+1 Then
  253. StartPage=1
  254. EndPage=Pagelen*2+1
  255. Else
  256. StartPage=Page-Pagelen
  257. EndPage=Page+Pagelen
  258. End If
  259. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  260. End If
  261. For i = StartPage To EndPage
  262. If i = Page Then
  263. Response.Write "<a class=""current"">"&i&"</a>"
  264. Else
  265. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  266. End If
  267. Next
  268. If Page<Rs.PageCount Then
  269. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  270. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  271. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  272. End If
  273. Response.Write "<input type=""text"" id=""Pagego"" value="""&Page&""" onFocus=""if(this.value == '"&Page&"'){this.value='';}"" onBlur=""if(this.value == ''){this.value='"&Page&"';}"" onKeyUp=""this.value=this.value.replace(/\D/g,'')"" onKeyDown=""if(event.keyCode==13){location.href='"&PageName&"Page='+document.getElementById('Pagego').value}"" />"
  274. End If
  275. %> </div>
  276. <div class="searchbox"><input type="text" id="keys" 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="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)}" /><input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+escape(document.getElementById('keys').value)" /></div>
  277. <div class="postchkbox">
  278. <select id="chkact" name="chkact">
  279. <option value="1">请选择</option>
  280. <option value="-1">删除</option>
  281. </select>
  282. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  283. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  284. </div>
  285. </td>
  286. </tr>
  287. </tfoor>
  288. </table>
  289. </form>
  290. <%Rs.Close:Set Rs=Nothing:Set Rs1=Nothing:Conn.Close:Set Conn=Nothing%>
  291. </div>
  292. <script>
  293. $('.click-open-iframe').galpop({
  294. contentType: 'iframe',
  295. });
  296. </script>
  297. </body>
  298. </html>