31 lines
1.4 KiB
Plaintext
31 lines
1.4 KiB
Plaintext
<%@page import="com.amarsoft.are.util.json.JSONEncoder"%>
|
||
<%@page import="jbo.app.tenwa.calc.LC_EBANK_TEMP"%>
|
||
<%@ page contentType="text/html; charset=GBK"%>
|
||
<%@ include file="/IncludeBegin.jsp"%>
|
||
<%
|
||
String flowunid = CurPage.getAttribute("FlowUnid");
|
||
//参数: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"},
|
||
{"true", "本次资金收款明细", "AsControl.OpenComp('/Tenwa/Lease/Flow/Fund/FundCollection/LCFundIncomTempList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')", "false"},
|
||
};
|
||
|
||
//参数:0.是否显示, 1.权限, 2.类型, 3.按钮文字, 4.说明文字, 5.事件, 6.快捷键, 7.资源路径, 8.资源路径参数, 9.图标, 10.风格
|
||
String sButtons[][] = {
|
||
};
|
||
|
||
// BeforeTabStripHtml-html
|
||
CurPage.setAttribute("BeforeTabStripHtml", Button.getHtmlText(sButtons, CurUser, CurPage, CurConfig));
|
||
|
||
// TabStrip-JSON
|
||
CurPage.setAttribute("TabStrip", JSONEncoder.encode(sTabStrip));
|
||
|
||
// TabStripType-tab/strip 默认为tab
|
||
//CurPage.setAttribute("TabStripType", "strip");
|
||
|
||
// First-num 默认为0
|
||
CurPage.setAttribute("First", "2");
|
||
|
||
%>
|
||
<%@ include file="/Frame/resources/include/ui/include_tabstrip.jspf"%>
|
||
<%@ include file="/IncludeEnd.jsp"%> |