汽车类传统网银回款,申请提交到下一步不显示租金计划和资金计划,只显示明细

两个页签两个页面
This commit is contained in:
zhangjun 2019-09-16 13:55:06 +08:00
parent da937e5b38
commit 587a870f6c
2 changed files with 12 additions and 2 deletions

View File

@ -4,9 +4,14 @@
<%@ include file="/IncludeBegin.jsp"%>
<%
String flowunid = CurPage.getAttribute("FlowUnid");
String PhaseNo = CurPage.getParameter("PhaseNo");
String temp = "true";
if("0020".equals(PhaseNo)){
temp = "false";
};
//参数0.是否显示, 1.标题, 2.JS事件字符串表示(TabContentFrame会替换为真实名称), 3. 是否缓存(默认是), 4. 是否有关闭按钮(默认无), 5. Strip高度(默认600px)
String sTabStrip[][] = {
{"true", "×Ê½ð¼Æ»®", "AsControl.OpenComp('/Tenwa/Lease/Flow/Fund/FundCollection/VIFundPlanList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')" ,"false"},
{temp, "×Ê½ð¼Æ»®", "AsControl.OpenComp('/Tenwa/Lease/Flow/Fund/FundCollection/VIFundPlanList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')" ,"false"},
{"true", "本次资金收款明细", "AsControl.OpenComp('/Tenwa/Lease/Flow/Fund/FundCollection/LCFundIncomTempList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')", "false"},
};

View File

@ -5,9 +5,14 @@
<%
//dwTemp.MultiSelect = true; //多选
String flowunid = CurPage.getAttribute("FlowUnid");
String PhaseNo = CurPage.getParameter("PhaseNo");
String temp = "true";
if("0020".equals(PhaseNo)){
temp = "false";
};
//参数0.是否显示, 1.标题, 2.JS事件字符串表示(TabContentFrame会替换为真实名称), 3. 是否缓存(默认是), 4. 是否有关闭按钮(默认无), 5. Strip高度(默认600px)
String sTabStrip[][] = {
{"true", "×â½ð¼Æ»®", "AsControl.OpenComp('/Tenwa/Lease/Flow/Rent/RentIncome/VILCRentPlanList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')","false"},
{temp, "×â½ð¼Æ»®", "AsControl.OpenComp('/Tenwa/Lease/Flow/Rent/RentIncome/VILCRentPlanList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')","false"},
{"true", "本次租金收款明细", "AsControl.OpenComp('/Tenwa/Lease/Flow/Rent/RentIncome/LCRentIncomeTempList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')", "false"},
};