apzl_leasing/WebContent/Tenwa/Lease/Flow/CollectionAudit/LcCustomerBankVertifyInfo.jsp

36 lines
1.5 KiB
Plaintext

<%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%><%
/*
Author: undefined 2018-06-11
Content: 示例详情页面
History Log:
*/
String customerid = CurPage.getParameter("CustomerId");
String sPrevUrl = CurPage.getParameter("PrevUrl");
if(sPrevUrl == null) sPrevUrl = "/Tenwa/Lease/Flow/CollectionAudit/LcCustomerBankVertifyList.jsp";
String sTempletNo = "CustomerBankVertifyInfo";//--模板号--
ASObjectModel doTemp = new ASObjectModel(sTempletNo);
//doTemp.setColTips("", "测试");
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
dwTemp.Style = "2";//freeform
//dwTemp.ReadOnly = "-2";//只读模式
dwTemp.genHTMLObjectWindow(customerid);
String sButtons[][] = {
{"true","All","Button","保存","保存所有修改","saveMobile()","","","",""},
{String.valueOf(!com.amarsoft.are.lang.StringX.isSpace(sPrevUrl)),"All","Button","返回","返回列表","returnList()","","","",""}
};
sButtonPosition = "south";
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
<script type="text/javascript">
function saveMobile(){
var parm = "customerid="+getItemValue(0,getRow(0),"customerid")+",mobile="+getItemValue(0,getRow(0),"mobile");
var res = RunJavaMethodTrans("com.tenwa.comm.customerfilterlist.DebitCardAction", "saveMobile", parm);
reloadSelf();
}
function returnList(){
AsControl.OpenView("<%=sPrevUrl%>", "","_self","");
}
</script>
<%@ include file="/Frame/resources/include/include_end.jspf"%>