handle_details.jsp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  4. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  5. <%
  6. String path = request.getContextPath();
  7. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  8. %>
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <base href="<%=basePath%>">
  13. <!-- jsp文件头和头部 -->
  14. <%@ include file="../../system/index/top.jsp"%>
  15. </head>
  16. <body class="no-skin">
  17. <!-- /section:basics/navbar.layout -->
  18. <div class="main-container" id="main-container">
  19. <!-- /section:basics/sidebar -->
  20. <div class="main-content">
  21. <div class="main-content-inner">
  22. <div class="page-content">
  23. <div class="row">
  24. <div class="col-xs-12">
  25. <table id="table_report" class="table table-striped table-bordered table-hover" style="margin-top: 10px;">
  26. <tr>
  27. <td id="content" ></td>
  28. </tr>
  29. </table>
  30. </div>
  31. <!-- /.col -->
  32. </div>
  33. <!-- /.row -->
  34. </div>
  35. <!-- /.page-content -->
  36. </div>
  37. </div>
  38. <!-- /.main-content -->
  39. </div>
  40. <!-- /.main-container -->
  41. <!-- 页面底部js¨ -->
  42. <%@ include file="../../system/index/foot.jsp"%>
  43. <script type="text/javascript">
  44. $(top.hangge());
  45. window.onload = function(){
  46. $("#content").html(top.handleDetails(''));
  47. };
  48. </script>
  49. </body>
  50. </html>