products.asp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  8. <script type="text/javascript" src="js/js.js"></script>
  9. <script type="text/javascript" src="js/SearchArea.js"></script>
  10. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. </head>
  12. <body>
  13. <div id="man_zone">
  14. <%
  15. Act = Request.QueryString("act")
  16. ProductName=TextEnCode(Request.Form("ProductName"))
  17. ProductImg=TextEnCode(Request.Form("ProductImg"))
  18. unit=TextEnCode(Request.Form("unit"))
  19. moq=TextEnCode(Request.Form("moq"))
  20. nosale=Request.Form("nosale")
  21. num=Request.Form("num")
  22. price=Request.Form("price")
  23. note=TextEnCode(Request.Form("note"))
  24. tips=TextEnCode(Request.Form("tips"))
  25. If act = "save" Then
  26. Set Rs = Server.CreateObject("ADODB.RecordSet")
  27. isedit = False
  28. id = Request.Form("id")
  29. If id<>"" And IsNumeric(id) Then isedit = True
  30. If isedit Then
  31. Rs.Open "Select * From Products Where id="&id,Conn,1,3
  32. Rs("ProductName") = ProductName
  33. Rs("ProductImg") = ProductImg
  34. Rs("Addtime")=now()
  35. Rs("moq")=moq
  36. Rs("unit")=unit
  37. Rs("nosale")=nosale
  38. Rs("note")=note
  39. Rs("tips")=tips
  40. Rs.Update:Rs.Close
  41. Set Rs=Nothing
  42. numarr=split(num,",")
  43. pricearr=split(price,",")
  44. Conn.execute("delete from price where productId="&id&" and AreaId=0")
  45. For i=0 to ubound(numarr)
  46. If numarr(i)="" then numarr(i)=0
  47. If pricearr(i)="" then pricearr(i)=0
  48. Conn.execute("insert into price (productId,AreaId,num,price) values("&id&",0,"&numarr(i)&",'"&pricearr(i)&"')")
  49. Next
  50. Conn.close
  51. Set Conn=Nothing
  52. Page = Request.QueryString("Page")
  53. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  54. Response.Redirect "?keys="&Keys&"&Page="&Page&urlStr
  55. Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  56. Else
  57. Rs.Open "Products",Conn,1,3
  58. Rs.Addnew()
  59. Rs("ProductName") = ProductName
  60. Rs("ProductImg") = ProductImg
  61. Rs("Addtime")=now()
  62. Rs("unit")=unit
  63. Rs("moq")=moq
  64. Rs("nosale")=nosale
  65. Rs("note")=note
  66. Rs("tips")=tips
  67. Rs.Update:Rs.Close
  68. Rs.open "select top 1 id from Products order by id desc",Conn,1,3
  69. id=Rs("id")
  70. Rs.close
  71. numarr=split(num,",")
  72. pricearr=split(price,",")
  73. For i=0 to ubound(numarr)
  74. If numarr(i)="" then numarr(i)=0
  75. If pricearr(i)="" then pricearr(i)=0
  76. Conn.execute("insert into price (productId,AreaId,num,price) values("&id&",0,"&numarr(i)&",'"&pricearr(i)&"')")
  77. Next
  78. Set Rs=Nothing
  79. Conn.close
  80. Set Conn=Nothing
  81. Page = Request.QueryString("Page")
  82. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  83. Response.Redirect "?keys="&Keys&"&Page="&Page&urlStr
  84. Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  85. End If
  86. Conn.Close:Set Conn=Nothing
  87. Response.End
  88. End If 'end save
  89. If Act = "add" or Act = "edit" Then
  90. id = Request.QueryString("id")
  91. isedit = False
  92. If id<>"" And IsNumeric(id) Then isedit=True
  93. If isedit Then
  94. Set Rs = Server.CreateObject("ADODB.RecordSet")
  95. Rs.Open "Select ProductName,ProductImg,unit,moq,nosale,note,tips from Products Where id="&id,Conn,1,1
  96. If Not Rs.Bof And Not Rs.Eof Then
  97. ProductName=TextUnCode(Rs("ProductName"))
  98. ProductImg=TextUnCode(Rs("ProductImg"))
  99. unit=Rs("unit")
  100. moq=TextUnCode(Rs("moq"))
  101. nosale=Rs("nosale")
  102. note=TextUnCode(Rs("note"))
  103. tips=TextUnCode(Rs("tips"))
  104. Else
  105. isedit = False
  106. End If
  107. Rs.Close:Set Rs=Nothing
  108. End If
  109. Page = Request.QueryString("Page")
  110. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  111. hrefstr = "?keys="&Keys&"&Page="&Page
  112. %>
  113. <form name="form1" method="post" action="<%=hrefstr%>&act=save">
  114. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  115. <tbody>
  116. <tr>
  117. <th width="8%">产品名称</th>
  118. <td ><input type="text" id="ProductName" name="ProductName" value="<%=ProductName%>" class="txt1" /><input type="hidden" name="id" value="<%=id%>" /></td>
  119. </tr>
  120. <tr>
  121. <th width="8%">产品图片</th>
  122. <td ><input type="text" id="ProductImg" name="ProductImg" placeholder="186x*186px" value="<%=ProductImg%>" class="txt1" style="width:390px;float:left;" /><iframe src="uploadfile.asp" frameborder="0" scrolling="no" style="width:400px;height:22px;float:left;margin-left:10px;"></iframe></td>
  123. </tr>
  124. <tr>
  125. <th width="8%">计价单位</th>
  126. <td ><input type="text" id="unit" name="unit" value="<%=unit%>" class="txt1"/></td>
  127. </tr>
  128. <tr>
  129. <th width="8%">起订数量</th>
  130. <td ><input type="text" id="moq" name="moq" value="<%=moq%>" class="txt1"/></td>
  131. </tr>
  132. <tr>
  133. <th width="8%">默认售价</th>
  134. <td >
  135. <div class="Price">
  136. <% If isedit Then
  137. Set Rs = Server.CreateObject("ADODB.RecordSet")
  138. Rs.open "Select num,price from price where AreaId=0 and productId="&id&" order by num asc",conn,1,1
  139. If Not Rs.bof and Not Rs.eof Then
  140. For i=1 to Rs.RecordCount
  141. %>
  142. <div class="priceitem"><label>≥</label><input type="number" class="txt3 num" name="num" value="<%=Rs("num")%>"><label class="unit"><%=unit%></label> <label>售价</label><input type="text" class="txt3 price" name="price" value="<%=Rs("price")%>"><label>RMB</label><span class="additem"></span><span class="delitem"></span><span class="note"></span></div>
  143. <%
  144. Rs.moveNext
  145. Next
  146. Rs.close
  147. Else
  148. %>
  149. <div class="priceitem"><label>≥</label><input type="number" class="txt3 num" name="num"><label class="unit"><%=unit%></label> <label>售价</label><input type="text" class="txt3 price" name="price"><label>RMB</label> <span class="additem"></span><span class="delitem"></span><span class="note"></span></div>
  150. <%
  151. End If
  152. Else%>
  153. <div class="priceitem"><label>≥</label><input type="number" class="txt3 num" name="num"><label class="unit"><%=unit%></label> <label>售价</label><input type="text" class="txt3 price" name="price"><label>RMB</label> <span class="additem"></span><span class="delitem"></span><span class="note"></span></div>
  154. <%End If%>
  155. </div>
  156. </td>
  157. </tr>
  158. <tr>
  159. <th width="8%">不报价地区</th>
  160. <td >
  161. <ul class="areadd">
  162. <% If nosale<>"" Then
  163. Rs.open "select id,countryName from country where id in("&nosale&")",conn,1,1
  164. Do while not Rs.bof And not Rs.eof
  165. %>
  166. <li><input type="hidden" name="nosale" value="<%=Rs("id")%>"><span class="cname"><%=Rs("countryName")%></span><span class="close"></span></li>
  167. <%
  168. Rs.moveNext
  169. loop
  170. Rs.close
  171. End If
  172. %>
  173. </ul>
  174. <input type="text" id="AreaSearch" class="fastsearch">
  175. <div id="arealist" class="productlist"><ul></ul></div>
  176. </td>
  177. </tr>
  178. <tr>
  179. <th width="8%">不报价处理方式</th>
  180. <td><input type="text" id="note" name="note" value="<%=note%>" class="txt1"/></td>
  181. </tr>
  182. <tr>
  183. <th width="8%">备注</th>
  184. <td><input type="text" id="tips" name="tips" value="<%=tips%>" class="txt1"/></td>
  185. </tr>
  186. <tr>
  187. <th></th>
  188. <td colspan="2">
  189. <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%>'" />
  190. </td>
  191. </tr>
  192. </tbody>
  193. </table>
  194. </form>
  195. </div>
  196. </body>
  197. </html>
  198. <%
  199. Set Rs=Nothing
  200. conn.close
  201. Set conn=Nothing
  202. Response.End
  203. End If 'End Edit
  204. If Act="postchk" Then
  205. Keys = Server.UrlEnCode(Request.QueryString("Keys"))
  206. Page = Request.QueryString("Page")
  207. chkact = Request.Form("chkact")
  208. SqlStr = ""
  209. For i = 1 To Request.Form("chkbox").Count
  210. If SqlStr<>"" Then
  211. SqlStr = SqlStr & " Or id="&Request.Form("chkbox")(i)
  212. Else
  213. SqlStr = " Where id="&Request.Form("chkbox")(i)
  214. End If
  215. Next
  216. Select Case chkact
  217. Case "0":SqlStr = "Update customer Set cs_state="&chkact&SqlStr
  218. Case "1":SqlStr = "Update customer Set cs_state="&chkact&SqlStr
  219. Case Else:SqlStr = "Delete From products"&SqlStr
  220. End Select
  221. Conn.Execute(SqlStr):Conn.Close:Set Conn=Nothing
  222. Response.Redirect "?Keys="&Keys&"&Page="&Page
  223. Response.End
  224. End If 'End postchk
  225. Keyscode=TextEnCode(Request.QueryString("Keys"))
  226. Page = Request.QueryString("Page")
  227. sqlStr="Select id,ProductName,ProductImg from Products order by id Desc"
  228. Set Rs=Server.CreateObject("ADODB.RecordSet")
  229. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  230. hrefstr = "?keys="&Keys&urlStr
  231. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  232. %>
  233. <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Page=<%=Page%>" onSubmit="return false" />
  234. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  235. <thead>
  236. <tr>
  237. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  238. <th width="6%">序号</th>
  239. <th width="30%">产品名称</th>
  240. <th width="40%">图片</th>
  241. <th width="20%">操作</th>
  242. </tr>
  243. </thead>
  244. <tbody>
  245. <%
  246. Rs.Open sqlStr,Conn,1,1
  247. If Not Rs.Bof And Not Rs.Eof Then
  248. Rs.PageSize = 18
  249. If Page = "" Then Page = 1
  250. If Page = "end" Then Page = Rs.PageCount
  251. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  252. Page = Cint(Page)
  253. If Page > Rs.PageCount Then Page = Rs.PageCount
  254. Rs.AbsolutePage = Page
  255. TempNum = Rs.PageSize * (Page - 1)
  256. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  257. For i=1 To Rs.PageSize
  258. If Rs.Bof Or Rs.Eof Then Exit For
  259. TempNum=TempNum+1:classid=Rs(1)
  260. %>
  261. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  262. <td align="center"><input type="checkbox" name="chkbox" value="<%=Rs(0)%>" /></td>
  263. <td align="center" ><%=TempNum%></td>
  264. <td align="center" ><%=Rs("ProductName")%></td>
  265. <td align="center" ><img src="<%=Rs("productImg")%>" width="80px"></td>
  266. <td align="center"><a href="?Keys=<%=keys%>&Page=<%=Page%><%=urlStr%>&act=edit&id=<%=Rs(0)%>" class="ico_edit ico">修改</a>
  267. </td>
  268. </tr>
  269. <%
  270. Rs.MoveNext
  271. Next
  272. Else
  273. If Keys="" Then
  274. %>
  275. <tr>
  276. <td align="center" colspan="9">Sorry,当前暂无信息</td>
  277. </tr>
  278. <%
  279. Else
  280. %>
  281. <tr>
  282. <td align="center" colspan="9"><a href="?">Sorry,没有找到“<%=Keyscode%>”相关的信息,点击返回</a></td>
  283. </tr>
  284. <%
  285. End If
  286. End If
  287. %>
  288. </tbody>
  289. <tfoot>
  290. <tr>
  291. <td colspan="9">
  292. <div class="showpagebox">
  293. <%
  294. If Rs.PageCount > 1 Then
  295. PageName="?Keys="&Keys&urlStr&"&"
  296. Pagelen=3
  297. If Page>1 Then
  298. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  299. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  300. End If
  301. If Pagelen*2+1 >= Rs.PageCount Then
  302. StartPage=1:EndPage=Rs.PageCount
  303. Else
  304. If Page<=Pagelen+1 Then
  305. StartPage=1
  306. EndPage=Pagelen*2+1
  307. Else
  308. StartPage=Page-Pagelen
  309. EndPage=Page+Pagelen
  310. End If
  311. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  312. End If
  313. For i = StartPage To EndPage
  314. If i = Page Then
  315. Response.Write "<a class=""current"">"&i&"</a>"
  316. Else
  317. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  318. End If
  319. Next
  320. If Page<Rs.PageCount Then
  321. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  322. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  323. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  324. End If
  325. 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}"" />"
  326. End If
  327. %> </div>
  328. <div class="postchkbox">
  329. <select id="chkact" name="chkact">
  330. <option value="1">显示</option>
  331. <option value="0">隐藏</option>
  332. <option value="-1">删除</option>
  333. </select>
  334. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  335. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  336. </div>
  337. </td>
  338. </tr>
  339. </tfoot>
  340. </table>
  341. </form>
  342. <%Rs.Close:Set Rs=Nothing:Set Rs1=Nothing:Conn.Close:Set Conn=Nothing%>
  343. </div>
  344. </body>
  345. </html>