appointList_meup.jsp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. //var tabid;
  31. ///$(function() {
  32. //tabid = "ligerui" + new Date().toDateString();
  33. //});
  34. function openMsg(uid){
  35. var tabid = "/ynet/moneyAppoint.do";
  36. addTab(tabid, "现金调拨预约", "seeBASSC.do?id="+uid);
  37. }
  38. </script>
  39. </head>
  40. <body>
  41. <div class="forum-container">
  42. <table class="index-table line" width="100%">
  43. <tr><th>预约金额</th><th>币别</th><th>状态</th><th>预约网点</th><th>预约日期</th></tr>
  44. <c:forEach items="${moneyAppointList}" var="mal" varStatus="i">
  45. <tr onclick="openMsg('${mal.universalid}')" style="cursor:pointer" class="${(i.index+1)%2==0?'two':'one'}">
  46. <td>${mal.appointamount}</td>
  47. <td>${mal.wordvalue}</td>
  48. <td> ${mal.itemvalue} </td>
  49. <td>${mal.groupname}</td>
  50. <td>${mal.appointtime}</td>
  51. </tr>
  52. </c:forEach>
  53. </table>
  54. </div>
  55. </body>
  56. </html>