📄 businesslist.jsp
字号:
<%@ page language="java" contentType="text/html;charset=UTF-8"
session="true" errorPage="err.jsp" %><%@ include file="../GVinc/gvInclude.jsp" %>
<%@ include file="clubMasterPass.jsp" %><%
int iPage = TypeChange.stringToInt(request.getParameter("iPage"));
if(iPage<1){iPage = 1;}
byte businessType = ParamUtils.getByteParameter(request,"type");
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>交易记录</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<STYLE type=text/css media=screen>@import url(../GVinc/main.css);</STYLE>
</head>
<body>
<table width="99%" border="0" align="center" cellpadding="2" cellspacing="1" class="tab">
<tr align="center" class="tr">
<td width="128" height="24"><strong>交易对象</strong></td>
<td width="60" height="24"><strong>信誉</strong></td>
<td width="60"><strong>积分</strong></td>
<td width="60"><strong>金币</strong></td>
<td width="120"><strong>交易类型</strong></td>
<td width="60"><strong>当时兑率</strong></td>
<td width="100"><strong>发生时刻</strong></td>
<td width="#"><strong>备注</strong></td>
</tr>
<%
com.gamvan.club.user.ClubBusinessResults cbu = new com.gamvan.club.user.ClubBusinessResults();
int totalPage = 0; // 总页数
cbu.setUserID(-1);
cbu.setBusinessType((byte)-1);
totalPage = cbu.businessCount();
List list = cbu.businessList(iPage, 30);
%>
<c:forEach var="b" items="<%=list%>">
<tr align="center" class="tab2">
<td width="128" height="25">
<club:users type="userName" idIs="${b.userID}" value="${b.userName}" url="../" bea="<%=false%>"/>
</td>
<td width="57">
<club:users type="userCredit" value="${b.userCredit}"/>
</td>
<td>
<club:users type="userMark" value="${b.userMark}"/>
</td>
<td>
<club:users type="userMoney" value="${b.userMoney}"/>
<td>
<club:users type="businessType" idIs="${b.businessType}"/>
</td>
<td>
<club:users type="businessRate" value="${b.businessRate}"/>
</td>
<td>
<club:users type="dateTime" value="${b.businessDateTime}"/>
</td>
<td>
<club:users type="businessLog" value="${b.businessLog}"/>
</td>
</tr>
</c:forEach>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td>
<%=OutPrint.pageJump(totalPage,30, iPage, "businessList.jsp?")%></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -