📄 pdt_upd_pri.asp
字号:
<!-- #include file="../inc_config.asp" -->
<!-- #include file="LoginCk.asp" -->
<%
Call PopCheck(40) '权限检查
Set PdtData = Conn.Query("EfangPdt","Pdt_Sign='" & Sign & "'") '获取商品信息
if PdtData.BOF or PdtData.EOF then ShowErMsg("商品不存在!") '检查商品是否存在
%>
<html>
<head>
<title>单独定价列表</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link id="style_sheet" href="css/save.css" type="text/css" rel="stylesheet">
<script language="JavaScript">style_sheet.href = parent.parent.style_sheet.href;</script>
<%=Efs_Cfg_PHeader%>
</head>
<script language="JavaScript" src="js/common_Efang.js"></script>
<body class="NormalPage">
<form id="form_help" action="help_content.asp" method="get" target="working_area">
<input name="help_topic" type="hidden" value="单独定价列表">
</form>
<form name="form1" method="post" action="?Cmd=Upd">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td id="headerToolBar" valign="middle" nowrap style="width:100%; height:22px;"><table cellpadding="0" cellspacing="0" class="HeaderPageControl">
<tr>
<td align="left" valign="middle" nowrap height="20">系统设置>> 商品管理 >> <b></b><b></b><b>单独定价列表</b></td>
<td align="center" valign="middle" nowrap width="10" height="20"></td>
<td align="right" valign="middle" width="100%" nowrap height="20"></td>
<td align="center" valign="middle" nowrap width="10" height="20"></td>
<td align="right" valign="middle" width="60" nowrap height="20"><img id="id_back" alt="返回上一页" onclick="JavaScript:history.back()" onmouseover="JavaScript:this.src=imgBackUp.src" onmouseout="JavaScript:this.src=imgBackDown.src" src="images/toolbar_back.gif" border="0" style="cursor:hand;width:22px; height:20px;"><img id="id_refresh" alt="刷新" onclick="JavaScript:fn_Refresh()" onmouseover="JavaScript:this.src=imgRefreshUp.src" onmouseout="JavaScript:this.src=imgRefreshDown.src" src="images/toolbar_refresh.gif" border="0" style="cursor:hand;width:22px; height:20px;"></td>
<td align="right" valign="middle" width="25" nowrap height="20"><img src="images/toolbar_help.gif" alt="帮助" width="43" height="20" border="0" id="id_locate" style="cursor:hand;width:22px; height:20px;" onclick="JavaScript:fn_ShowHelp()" onmouseover="JavaScript:this.src=imgHelpUp.src" onmouseout="JavaScript:this.src=imgHelpDown.src"></td>
</tr>
</table></td>
</tr>
<tr>
<td valign="top">
<div id="viewPanel" style="visibility:visible; position:absolute; overflow:auto;">
<br>
<table width="85%" border="0" align="center" cellpadding="0" cellspacing="2" class="datalist">
<tr>
<td width="31%">商品名称: <%=PdtData("Pdt_Name")%></td>
<td width="38%">商品类目:<%=Conn.QueryItem("EfangPdtSort","PSort_Name","PSort_Sign='" & PdtData("Pdt_Sort") & "'")%></td>
<td width="31%"> </td>
</tr>
</table>
<table width="85%" border="0" align="center" cellPadding="0" cellSpacing="0" class="datalist">
<th width="12%" height="25" align="center" nowrap class="DataListHeader">会员帐号</th>
<th width="16%" align="center" nowrap class="DataListHeader">级别</th>
<th width="22%" height="25" align="center" nowrap class="DataListHeader">会员价</th>
<th width="24%" height="25" align="center" nowrap class="DataListHeader">标准价</th>
<th width="26%" align="center" nowrap class="DataListHeader">实际价格</th>
<%
Set ULData=Conn.Query("EfangUser","User_Pri like '%" & Sign & "=%' Order By User_Level")
Do while not (ULData.EOF or ULData.BOF)
%>
<tr>
<td width="12%" height="25" align="center" nowrap class="DataListGrid"><a href=User_Upd.asp?User=<%=ULData("User_User")%>><%=ULData("User_User")%></a></td>
<td width="16%" align="center" nowrap class="DataListGrid"><%=Conn.QueryItem("EfangLevel","Level_Name","Level_Sign='" & ULData("User_Level") & "'")%></td>
<td width="22%" align="center" nowrap class="DataListGrid"><%=PdtData("Pdt_Level1")%></td>
<td width="24%" align="center" nowrap class="DataListGrid"><%=PdtData("Pdt_" & ULData("User_Level"))%></td>
<td width="26%" align="center" nowrap class="DataListGrid"><%=GetPri(ULData("User_Pri"),Sign,0)%> </td>
</tr>
<%
ULData.movenext
Loop
Set ULData=Nothing
%>
</table></div></td>
</tr>
</table>
</form>
<% Call ExitEnd(False) %>
</body>
<script language="JavaScript">
<!--
document.parentWindow.onresize = fn_RejustViewPanel ;
fn_RejustViewPanel ( ) ;
//alert ( document.body.clientWidth + ":" + viewPanel.clientWidth ) ;
//-->
</script>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -