32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/Frame/resources/include/include_begin_list.jspf"%><%
|
|
String PG_TITLE = "授信限额集中度列表"; // 浏览器窗口标题 <title> PG_TITLE </title>
|
|
|
|
ASObjectModel doTemp = new ASObjectModel("InspectLimitList");
|
|
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
|
|
dwTemp.Style="1"; //设置为Grid风格
|
|
dwTemp.ReadOnly = "1"; //设置为只读
|
|
|
|
//生成datawindow
|
|
dwTemp.genHTMLObjectWindow("");
|
|
|
|
|
|
String sButtons[][] = {
|
|
{"true","","Button","详情","查看详情","my_detail()","","","",""}
|
|
};
|
|
%><%@include file="/Frame/resources/include/ui/include_list.jspf"%>
|
|
<script type="text/javascript">
|
|
function my_detail(){
|
|
var sItemNo = getItemValue(0,getRow(),"ItemNo");
|
|
if (typeof(sItemNo)=="undefined" || sItemNo.length==0){
|
|
alert(getHtmlMessage('1'));//请选择一条信息!
|
|
return;
|
|
}
|
|
OpenPage("/SystemManage/SynthesisManage/InspectLimitInfo.jsp?ItemNo="+sItemNo,"_self","");
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
<%@ include file="/Frame/resources/include/include_end.jspf"%> |