38 lines
1.7 KiB
Plaintext
38 lines
1.7 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"%>
|
||
<%
|
||
//dwTemp.MultiSelect = true; //多选
|
||
String flowunid = CurPage.getAttribute("FlowUnid");
|
||
String PhaseNo = CurPage.getParameter("PhaseNo");
|
||
String temp = "false";
|
||
if("0010".equals(PhaseNo)){
|
||
temp = "true";
|
||
};
|
||
//参数:0.是否显示, 1.标题, 2.JS事件字符串表示(TabContentFrame会替换为真实名称), 3. 是否缓存(默认是), 4. 是否有关闭按钮(默认无), 5. Strip高度(默认600px)
|
||
String sTabStrip[][] = {
|
||
{temp, "分润计划", "AsControl.OpenComp('/Tenwa/Lease/Flow/Rent/RentReback/SplittingList.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')","false"},
|
||
{"true", "分润支付数据", "AsControl.OpenComp('/Tenwa/Lease/Flow/Rent/RentReback/LCSplittingPayTemp.jsp', 'FlowUnid="+flowunid+"', 'TabContentFrame')", "false"},
|
||
// {"true", "分润支付汇总数据", "AsControl.OpenComp('/Tenwa/Lease/Flow/Rent/RentReback/LCSplittingPayTemp.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", "0");
|
||
|
||
%>
|
||
<%@ include file="/Frame/resources/include/ui/include_tabstrip.jspf"%>
|
||
<%@ include file="/IncludeEnd.jsp"%> |