📄 config_param_specail_no.jsp
字号:
<%@ page contentType="text/html; charset=gbk" %>
<%@ page import="com.doone.uurm.*, com.doone.data.*, com.doone.fj1w.common.*" %>
<%@ page import="com.doone.fj1w.fjmgr.order.OrderService" %>
<%@ taglib uri="/WEB-INF/curstom-tags.tld" prefix="custom" %>
<%
response.reset();
response.setContentType("text/html; charset=utf-8");
WebAuth auth = WebAuth.getInstance(request);
String cityCode = auth.getCityCode();
if (cityCode == null || cityCode.equals("") ) cityCode = "0590";
String cityName = auth.getCityName();
if (cityName == null || cityName.equals("") ) cityName = "全省";
java.util.Map _map = (java.util.Map)request.getAttribute("XMLPARAM");
try {
if ( _map == null ) throw new RuntimeException("参数不能为空。");
pageContext.setAttribute("SELECT_PARAM", _map);
}catch(Exception ex){}
String sType = request.getParameter("type");
if ( sType.equals("0") ) {
// 输出记录数。
out.print("str-->500");
return ;
}
else if ( ! sType.equals("1") ) {
// 输出错误信息
return ;
}
%>str--><table width="100%">
<tr>
<td width="4%" class="Caption_Td" align="right" nowrap="nowrap">选择地市:</td>
<td width="6%" class="body_td" nowrap="nowrap">
<custom:HtmlSelect name="CITYCODE" style="width:100%" styleId="CITYCODE"
servicename="com.doone.fj1w.fjmgr.order.list.CityQueryImpl"
method="getList"
mapName="SELECT_PARAM"
onChange="fCityCode_OnChange(this);"
textFieldName="OPTIONTEXT"
valueFieldName="OPTIONVALUE"
value='<%= auth.getCityCode()%>'
disabled='<%= (auth.getCityCode()!=null)?"true":"false"%>'>
</custom:HtmlSelect>
</td>
<!-- <td width="10%" class="Caption_Td" align="right" nowrap="nowrap">产品名称:</td>
<td width="15%" class="body_td" align="left" nowrap="nowrap">
<input type="text" name="PRODUCTNAME" id="PRODUCTNAME" value="" style="width: 100%;" >
</td>
<td width="10%" class="Caption_Td" align="right" nowrap="nowrap">产品大类:</td>
<td width="15%" class="body_td" nowrap="nowrap">
<custom:HtmlSelect name="PRODUCTTYPE" style="width:100%" styleId="PRODUCTTYPE"
servicename="com.doone.fj1w.fjmgr.order.list.ProductQueryImpl"
method="getList"
mapName="SELECT_PARAM"
onChange=""
textFieldName="OPTIONTEXT"
valueFieldName="OPTIONVALUE"
value=''>
</custom:HtmlSelect>
</td>
<td width="10%" class="Caption_Td" align="right" nowrap="nowrap">产品配置类型:</td>
<td width="15%" class="body_td" nowrap="nowrap">
<custom:HtmlSelect name='CONFIGTYPE' servicename='com.doone.fj1w.fjmgr.order.list.ProductQueryImpl'
method='getConfigType'
mapName="SELECT_PARAM"
style="width:100%" styleId='CONFIGTYPE'
className=''
textFieldName=''
valueFieldName=''
value=''>
</custom:HtmlSelect>
</td>-->
<td width="10%" class="Caption_Td" align="right" nowrap="nowrap"> </td>
<td width="15%" class="Caption_Td" nowrap="nowrap">
</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -