21 lines
1.2 KiB
Plaintext
21 lines
1.2 KiB
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 contract_number=CurPage.getParameter("contract_number");
|
||
String payment_number=CurPage.getParameter("payment_number");
|
||
String sTabStrip[][] = {
|
||
{"true", "催收记录", "/Tenwa/Lease/Flow/RentCollection/rentcollection/overDuedunningRecordList.jsp", "cust_id="+custid+"&cust_name="+cust_name+"&contract_number="+contract_number+"&contractid="+contractid+"&payment_number="+payment_number},
|
||
{"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"%> |