📄 querydefineeditlist.jsp
字号:
<%@ page contentType="text/html; charset=GBK"
import="java.util.*,com.gs.util.*,
com.gs.control.event.*,
com.gs.pageBuilder.model.*"
%>
<%
String td="businessTd00";
String SN = (String)request.getAttribute("SN");
String BID = (String)request.getAttribute("BID");
String innerID = (String)request.getAttribute("innerID");
String yearCheckupY = (String)request.getAttribute("yearCheckupY");
QuerytBusinessInfoModel querytBusinessInfoModel = (QuerytBusinessInfoModel)request.getAttribute("querytBusinessInfoModel");
QueryPageDefine queryPageDefine;
ArrayList queryList = (ArrayList)request.getAttribute("queryList");
Calendar calendar=Calendar.getInstance();
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>修改情况<%if(BID.startsWith("03"))out.print("-变更");%></title>
<script language="javascript">
function openWin(url){
var w = 794;
var h = 550;
if (screen.width == 1024){
w = 1018;
h = 720;
}
window.open(url,"","toolbar=no,resizable,scrollbars,dependent,width="+w+",height="+h+",top=0,left=0");
}
</script>
<link href="<%=request.getContextPath()%>/include/style/style01/style.css" rel="stylesheet" type="text/css">
</head>
<body class="businessBody01">
<center>
<table border="0" width="90%">
<tr>
<td><img src="<%=request.getContextPath()%>/images/bg3.gif" border="0" > <font class="textBusinessTitle">修改情况</font></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="90%">
<tr>
<td width="100%">
<%
if (queryList!=null && queryList.size()>0)
{
%>
<table border="1" width="100%" class=businessTable00>
<tr>
<td height="31" class="businessTdTitle00" colspan="<%=queryList.size()%>">企业名称:<font color=red><%=querytBusinessInfoModel.getBusinessName()%></font></td>
</tr>
<tr>
<td height=30 class="<%=td%>Left"><p style="line-height: 170%; margin-top: 0; margin-bottom: 0">
<%for(int i=0;i<queryList.size();i++){
queryPageDefine = (QueryPageDefine)queryList.get(i);
td=td.equals("businessTd00")?"businessTd01":"businessTd00";
String pagetype = queryPageDefine.getPageType();
String action = String.valueOf(PageBuilderEvent.query_defineEditShow);
if("1".equals(pagetype)&&BID.startsWith("03")){
action = String.valueOf(PageBuilderEvent.query_defineEditChangeShow);
}%>
<a href="<%=request.getContextPath()%>/pageBuilderAction.do?action=<%=action%>&innerID=<%=innerID%>&yearCheckupY=<%=yearCheckupY%>&BID=<%=BID%>&SN=<%=SN%>&code=<%=queryPageDefine.getCode()%>&querytoShowNowDate=<%=PubFunc.getDateStr(calendar)%>" title="修改<%=PubFunc.toShow(queryPageDefine.getExplain())%>" target="main"><%=PubFunc.toShow(queryPageDefine.getExplain())%></a>
<%if(i==0){%>
<script>
parent.main.location="<%=request.getContextPath()%>/pageBuilderAction.do?action=<%=action%>&innerID=<%=innerID%>&yearCheckupY=<%=yearCheckupY%>&BID=<%=BID%>&SN=<%=SN%>&code=<%=queryPageDefine.getCode()%>&querytoShowNowDate=<%=PubFunc.getDateStr(calendar)%>"
</script>
<%}//if%>
<%}//for%>
</td>
</tr>
</table>
<%
}//if queryList
%></td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -