| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <%@ page language="java" contentType="text/html; charset=GBK" pageEncoding="GBK"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- <title>首页</title>
- <script type=text/javascript src="/shares/js/jquery-1.6.4.min.js"></script>
- <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="main.css" rel="stylesheet" type="text/css"/>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript" src="/shares/js/system/includeList.js"></script>
- <style type="text/css">
- .index-bottom{
- padding-top:5px;
- padding-left:5px;
- float-left:right;
- }
- #msgTitle{
- width:360px;
- -o-text-overflow: ellipsis;
- text-overflow:ellipsis;
- white-space:nowrap;
- overflow:hidden;
- }
- </style>
- <script type="text/javascript">
- function openMsg(uid){
- var tabid = "moneyAppointAll.do";
- addTab(tabid, "现金调拨预约(全部)", "xbBAS2.do?id="+uid);
- }
- </script>
- </head>
- <body>
- <div class="forum-container">
- <table class="index-table line" width="100%">
- <tr><th>预约金额</th><th>币别</th><th>状态</th><th>预约网点</th><th>预约日期</th></tr>
- <c:forEach items="${moneyAppointListAll}" var="malAll" varStatus="i">
- <tr onclick="openMsg('${malAll.universalid}')" style="cursor:pointer" class="${(i.index+1)%2==0?'two':'one'}">
- <td>${malAll.appointamount}</td>
- <td>${malAll.wordvalue}</td>
- <td>${malAll.itemvalue} </td>
- <td>
- <c:if test="${empty malAll.netname}">
- ${malAll.groupname}
- </c:if>
- <c:if test="${not empty malAll.netname}">
- ${malAll.netname}
- </c:if>
- </td>
- <td>${malAll.appointtime}</td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </body>
- </html>
|