123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!--#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">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>管理区域</title>
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <link rel="stylesheet" href="css/alert.css" type="text/css" />
- <script language="javascript" src="system/js/jquery-1.7.2.min.js"></script>
- <script type="text/javascript" src="js/js.js"></script>
- </head>
- <body class="clear">
- <!--#include file="panel.asp"-->
- <div id="man_zone">
- <%
- Set Rs=Server.CreateObject("ADODB.RecordSet")
- %>
- <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Page=<%=Page%>" onSubmit="return false" />
- <div class="fastSelect clear">
- <H1>报价查询</H1>
- <div class="selectItem">
- <label>区域</label>
- <select name="fliterCountry" id="fliterCountry" >
- <option value="">请选择国家地区</option>
- <%Rs.Open "Select id,countryName from country where id in(select distinct cs_country from customer where cs_belong="&Session("employee_id")&")",conn,1,1
- Do while Not Rs.Bof And Not Rs.eof
- %>
- <option value="<%=Rs("id")%>"> <%=Rs("countryName")%></option>
- <%
- Rs.moveNext
- loop
- Rs.close
- %>
- </select>
- </div>
- <div class="selectItem selectProduct" >
- <label>产品</label>
- <select name="fliterproduct" id="fliterproduct">
- <option value="">请选择产品</option>
- <%Rs.Open "Select id,ProductName from Products",conn,1,1
- Do while Not Rs.Bof And Not Rs.eof
- %>
- <option value="<%=Rs("id")%>"><%=Rs("ProductName")%></option>
- <%
- Rs.moveNext
- loop
- Rs.close
- %>
- </select>
- </div>
- <div class="selectItem selectnum">
- <label>数量</label>
- <select name="fliternum" id="fliternum" >
- <option value="">请选择产品</option>
- </select>
- </div>
- </div>
-
- <table width="100%" class="table2" >
- <tr class="theader">
- <th width="15%">产品名称</th>
- <th width="15%">图片</th>
- <th width="10%">起订数量</th>
- <th width="30%">报价管理</th>
- <th width="20%">备注</th>
- </tr>
- <tr id="pricecontrol" class="pricecontrol">
- </tr>
- </table>
-
- </div>
- </form>
- <%Set Rs=Nothing:Conn.Close:Set Conn=Nothing%>
- </div>
- </body>
- </html>
|