25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
<%@page import="com.amarsoft.are.lang.StringX"%>
|
|
<%@ page contentType="text/html; charset=GBK"%><%@
|
|
include file="/Frame/resources/include/include_begin_info.jspf"%><%
|
|
String sSerialNo = CurPage.getParameter("SerialNo");
|
|
String sPrevUrl = CurPage.getParameter("PrevUrl");
|
|
if(sSerialNo == null) sSerialNo = "";
|
|
if(sPrevUrl == null) sPrevUrl = "";
|
|
|
|
ASObjectModel doTemp = new ASObjectModel("TestCustomerInfo"); //通过显示模板生成
|
|
doTemp.setColTips("", "测试Tips");
|
|
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
|
|
dwTemp.Style = "2";//freeform
|
|
dwTemp.genHTMLObjectWindow(sSerialNo);
|
|
String sButtons[][] = {
|
|
{"true","All","Button","保存","保存所有修改","as_save(0)","","","",""},
|
|
{String.valueOf(!StringX.isSpace(sPrevUrl)),"All","Button","返回","返回列表","returnList()","","","",""}
|
|
};
|
|
sButtonPosition = "south";
|
|
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
|
|
<script type="text/javascript">
|
|
function returnList(){
|
|
OpenPage("<%=sPrevUrl%>", "_self");
|
|
}
|
|
</script>
|
|
<%@ include file="/Frame/resources/include/include_end.jspf"%> |