panel.jsp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  2. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <%
  7. String contextPath = request.getContextPath();
  8. %>
  9. <title>首页</title>
  10. <link rel="stylesheet" type="text/css" href="<%=contextPath%>/vendor/bootstrap-v3.0/css/bootstrap.min.css">
  11. <link rel="stylesheet" type="text/css" href="<%=contextPath%>/style/standard/css/common.min.css">
  12. <script type="text/javascript" src="<%=contextPath%>/static/ycrl/javascript/jquery-all.js"></script>
  13. <script type="text/javascript" src="<%=contextPath%>/static/ycrl/javascript/angular-all.js?v=403"></script>
  14. <script type="text/javascript" src="<%=contextPath%>/static/ycrl/javascript/angular-strap-all.js"></script>
  15. <style>
  16. div.main {
  17. padding-bottom: 20px;
  18. }
  19. .box {
  20. width: 32%;
  21. height: calc(50% - 20px);
  22. min-height: 310px;
  23. min-width: 370px;
  24. border: 1px solid #dcdcdc;
  25. border-top: 3px solid #00b0b9;
  26. margin: 20px 10px 0 0;
  27. box-sizing: border-box;
  28. float: right;
  29. }
  30. .box.r2 {
  31. height: calc(100% - 20px);
  32. }
  33. .box.c2 {
  34. width: calc(64% + 10px);
  35. }
  36. .box.c3 {
  37. width: 96%;
  38. }
  39. .box > .header {
  40. background-color: #f7f7f7;
  41. font-size: 14px;
  42. height: 40px;
  43. line-height: 40px;
  44. padding: 0 1em;
  45. }
  46. .box > .header > .title {
  47. display: inline;
  48. }
  49. .box > .header > .operate {
  50. display: inline;
  51. float: right;
  52. }
  53. .box > .header > .operate > a,
  54. .box > .header > .operate > .glyphicon {
  55. color: #333;
  56. margin-left: 8px;
  57. cursor: pointer;
  58. }
  59. .box > .content {
  60. padding: 1em;
  61. height: calc(100% - 40px);
  62. box-sizing: border-box;
  63. }
  64. .box > .content > ul,
  65. .box > .content > ul li {
  66. margin: 0;
  67. padding: 0;
  68. list-style: none;
  69. }
  70. .box > .content > ul li {
  71. height: 40px;
  72. line-height: 40px;
  73. border-bottom: 1px solid #e5e5e5;
  74. box-sizing: border-box;
  75. padding: 0 15px;
  76. }
  77. .box > .content > ul li:hover {
  78. background-color: #8fffee;
  79. }
  80. .box > .content > ul li > a {
  81. color: #333;
  82. cursor: pointer;
  83. width: calc(100% - 100px);
  84. display: inline-block;
  85. }
  86. .box > .content > ul li > .right {
  87. width: 100px;
  88. color: #999;
  89. float: right;
  90. }
  91. .box > .content > ul li > .right.new {
  92. color: #ff1f2e;
  93. }
  94. .box iframe {
  95. padding: 0;
  96. margin: 0;
  97. border: 0;
  98. height: 100%;
  99. width: 100%;
  100. overflow: hidden;
  101. }
  102. @media screen and (max-width: 780px) {
  103. .box {
  104. width: 95%;
  105. margin: 1em auto;
  106. float: none;
  107. }
  108. }
  109. </style>
  110. </head>
  111. <body id="ng-app">
  112. <div class="main" ng-app="main.panel" ng-controller="Ctrl">
  113. <c:if test="${sessionScope.get('OP_PANEL_DZX')}">
  114. <div class="box c3" ng-cloak>
  115. <div class="header">
  116. <div class="title">待办任务(大中型)</div>
  117. <div class="operate">
  118. <a ng-click="view('待办任务','/app/dyoa/order/order_todo.jsp');">
  119. <i class="glyphicon glyphicon-menu-right"></i>
  120. </a>
  121. </div>
  122. </div>
  123. <div class="content">
  124. <iframe ng-src="<%=contextPath%>/app/dyoa/order/order_todo_panel.jsp"></iframe>
  125. </div>
  126. </div>
  127. </c:if>
  128. <c:if test="${sessionScope.get('OP_PANEL_GD')}">
  129. <div class="box c3" ng-cloak>
  130. <div class="header">
  131. <div class="title">待办任务(个贷)</div>
  132. <div class="operate">
  133. <a ng-click="view('待办任务','/app/dyoa/order/loanOrder/loanOrder_todo.jsp');">
  134. <i class="glyphicon glyphicon-menu-right"></i>
  135. </a>
  136. </div>
  137. </div>
  138. <div class="content">
  139. <iframe ng-src="<%=contextPath%>/app/dyoa/order/loanOrder/loanOrder_todo_panel.jsp"></iframe>
  140. </div>
  141. </div>
  142. </c:if>
  143. </div>
  144. </body>
  145. <script type="text/javascript" src="<%=contextPath%>/app/base/resource/resource.js"></script>
  146. <script type="text/javascript" src="<%=contextPath%>/app/main/panel.js"></script>
  147. </html>