19 lines
1001 B
Plaintext
19 lines
1001 B
Plaintext
<%@ page contentType="text/html; charset=GBK"%><%@
|
||
include file="/IncludeBegin.jsp"%><%
|
||
/*
|
||
Author: undefined 2016-08-03
|
||
Content: 通过数组定义生成Tab框架页面示例
|
||
History Log:
|
||
*/
|
||
//定义tab数组:
|
||
//参数:0.是否显示, 1.标题,2.URL,3,参数串
|
||
String custid=CurPage.getParameter("cust_id");
|
||
String cust_name=CurPage.getParameter("cust_name");
|
||
String contractid=CurPage.getParameter("contractid");
|
||
String sTabStrip[][] = {
|
||
{"true", "催收记录", "/Tenwa/Lease/Flow/RentCollection/rentcollection/overDuedunningRecordList.jsp", "cust_id="+custid+"&cust_name="+cust_name},
|
||
{"true", "主管领导指示", "/Tenwa/Lease/Flow/RentCollection/rentcollection/overdueDunningDirectivesList.jsp", "cust_id="+custid+"&cust_name="+cust_name},
|
||
{"true", "出险项目情况表指示", "/Tenwa/Lease/Flow/RentCollection/rentcollection/overdueProjectList.jsp","cust_id="+custid+"&contractid="+contractid},
|
||
};
|
||
%><%@ include file="/Resources/CodeParts/Tab01.jsp"%>
|
||
<%@ include file="/IncludeEnd.jsp"%> |