📄 zjhdmxlist.jsp
字号:
<%@ page contentType="text/html;charset=GBK"%>
<%@ include file="/inc/pv/user.jsp"%>
<%@ include file="/inc/public/msg.jsp"%>
<%
if(checkPv(strMenuId,"list",user)<0){
noPv(out);
return;
}
String strOfficeStyle = site.bean.SitePara.strVirtualName + "/member/" + igec.util.CookieUtil.getCookieValue(request,site.bean.SitePara.strCookieUserTheme,"stand");
//System.out.println("strOfficeStyle =" +strOfficeStyle);
java.util.ArrayList list=(java.util.ArrayList)request.getAttribute("lists");
igec.site.base.bean.SysObj info=(igec.site.base.bean.SysObj)request.getAttribute("info");
String strSelfFlag=request.getParameter("selfFlag");
if(strSelfFlag==null || "".equals(strSelfFlag)){
strSelfFlag="1";
}
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<title> 会员办公室--<%=site.bean.SitePara.strWebTitle%> </title>
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/clear.jsp"></script>
<script language="JavaScript" src="<%=site.bean.SitePara.strVirtualName%>/js/public.js"></script>
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/xmlhttp.js"></script>
<link rel="stylesheet" rev="stylesheet" href="<%=strOfficeStyle%>/css/content.css" type="text/css" />
<link rel="stylesheet" rev="stylesheet" href="<%=strOfficeStyle%>/css/tree.css" type="text/css" />
<link rel="stylesheet" rev="stylesheet" href="<%=strOfficeStyle%>/css/mainframe.css" type="text/css" />
<script type="text/javascript" src="<%=site.bean.SitePara.strVirtualName%>/member/js/tree.jsp?baseurl=<%=strOfficeStyle%>"></script>
<link rel="shortcut icon" href="<%=site.bean.SitePara.strVirtualName%>/favicon.ico"></head>
<body>
<%@ include file="../top.jsp"%>
<div id="screen">
<!--content-->
<div id="contentfloat">
<div id="content">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="98%" valign="top">
<div class="TableContenttop">
<img src="images/bg_fd790d.gif" width="5" height="2" /></div>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="79%" class="TableContentTitle">资金活动明细查询</td>
<td width="21%" class="TableContentTitle "> </td>
</tr>
<tr>
<td colspan="2" valign="middle">
<br>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class=tx_box>
<tr>
<td height="30" class=tx_title> 友情提示:</td>
</tr>
<tr>
<td class=tx_content>暂无提示</span></td>
</tr>
</table></td>
</tr>
<tr>
<td height="110" colspan="2" valign="top">
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="1" class=list_lb_loca>
<tr>
<td width="30%" height="25" class="list_lb_title">资金出入描述</td>
<td width="15%" align="center" class="list_lb_title">类型</td>
<td width="10%" align="center"class="list_lb_title">实发金额</td>
<td width="10%" align="center" class="list_lb_title">应发金额</td>
<td width="10%" align="center" class="list_lb_title">剩余金额</td>
<td width="15%" align="center" class="list_lb_title">资金出入时间</td>
<td width="10%" align="center" class="list_lb_title">详情</td>
</tr>
<%
if(list!=null && list.size()>0){
for(int j=0;j<list.size();j++){
site.bean.MemMoneyInfoObj moneyInfoObj=(site.bean.MemMoneyInfoObj)list.get(j);
%>
<tr>
<td height="26" align="center" class=list_lb_content><%=moneyInfoObj.getStrUseTit()%></td>
<td align="center" class=list_lb_content>
<%=moneyInfoObj.getStrTypeInfo()%>
</td>
<td align="center" class=list_lb_content><%=moneyInfoObj.getStrMoney()%></td>
<td align="center" class=list_lb_content><%=moneyInfoObj.getStrSMoney()%></td>
<td align="center" class=list_lb_content><%=moneyInfoObj.getStrCurlEav()%></td>
<td align="center" class=list_lb_content><%=moneyInfoObj.getStrAddTime().substring(0,19)%></td>
<td align="center" class=list_lb_content><font onclick="javascript:window.location='<%=strOfficeStyle%>/person/zjhdmxinfo.jsp?id=<%=moneyInfoObj.getStrId()%>&iid=<%=strMenuId%>';" onmouseover="this.style.cursor='hand';" color="blue">详情</font></td>
</tr>
<%
}
}
%>
</table>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="17%"> </td>
<td width="83%" height="20" align="right"> <font color="red">注:实发金额-真正发生的金额 应发金额-应该发生的金额</font> </td>
</tr>
<tr>
<td> </td>
<td height="20" align="right"><%=info.getStrValue5()%> </td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<br />
<br />
<script language=javascript>
document.onkeydown=nextpage
function nextpage(event) {
event = event ? event : (window.event ? window.event : null);
if (event.keyCode==13) userlogin();
}
</script>
<script language="JavaScript">
function userlogin(){
document.loginform.submit();
}
</script>
</div>
</div>
<!--end/content-->
<!--left-->
<div id="leftmenu">
<!--menu-->
<div id="tree1"></div>
<!--end/menu-->
</div>
<!--end/left-->
</div>
<script language="javascript" src="<%=strOfficeStyle%>/menu.jsp?iid=<%=request.getParameter("iid")%>"></script>
<script type="text/javascript">treeInit();</script>
<%@ include file="../bot.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -