appointList_all.jsp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <%@ page language="java" contentType="text/html; charset=GBK" pageEncoding="GBK"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  8. <title>首页</title>
  9. <script type=text/javascript src="/shares/js/jquery-1.6.4.min.js"></script>
  10. <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  11. <link href="main.css" rel="stylesheet" type="text/css"/>
  12. <script type="text/javascript" src="/shares/js/constant.js"></script>
  13. <script type="text/javascript" src="/shares/js/common.js"></script>
  14. <script type="text/javascript" src="/shares/js/system/includeList.js"></script>
  15. <style type="text/css">
  16. .index-bottom{
  17. padding-top:5px;
  18. padding-left:5px;
  19. float-left:right;
  20. }
  21. #msgTitle{
  22. width:360px;
  23. -o-text-overflow: ellipsis;
  24. text-overflow:ellipsis;
  25. white-space:nowrap;
  26. overflow:hidden;
  27. }
  28. </style>
  29. <script type="text/javascript">
  30. function openMsg(uid){
  31. var tabid = "moneyAppointAll.do";
  32. addTab(tabid, "现金调拨预约(全部)", "xbBAS2.do?id="+uid);
  33. }
  34. </script>
  35. </head>
  36. <body>
  37. <div class="forum-container">
  38. <table class="index-table line" width="100%">
  39. <tr><th>预约金额</th><th>币别</th><th>状态</th><th>预约网点</th><th>预约日期</th></tr>
  40. <c:forEach items="${moneyAppointListAll}" var="malAll" varStatus="i">
  41. <tr onclick="openMsg('${malAll.universalid}')" style="cursor:pointer" class="${(i.index+1)%2==0?'two':'one'}">
  42. <td>${malAll.appointamount}</td>
  43. <td>${malAll.wordvalue}</td>
  44. <td>${malAll.itemvalue} </td>
  45. <td>
  46. <c:if test="${empty malAll.netname}">
  47. ${malAll.groupname}
  48. </c:if>
  49. <c:if test="${not empty malAll.netname}">
  50. ${malAll.netname}
  51. </c:if>
  52. </td>
  53. <td>${malAll.appointtime}</td>
  54. </tr>
  55. </c:forEach>
  56. </table>
  57. </div>
  58. </body>
  59. </html>