123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <%
- String contextPath = request.getContextPath();
- %>
- <title>首页</title>
- <link rel="stylesheet" type="text/css" href="<%=contextPath%>/vendor/bootstrap-v3.0/css/bootstrap.min.css">
- <link rel="stylesheet" type="text/css" href="<%=contextPath%>/style/standard/css/common.min.css">
- <script type="text/javascript" src="<%=contextPath%>/static/ycrl/javascript/jquery-all.js"></script>
- <script type="text/javascript" src="<%=contextPath%>/static/ycrl/javascript/angular-all.js?v=403"></script>
- <script type="text/javascript" src="<%=contextPath%>/static/ycrl/javascript/angular-strap-all.js"></script>
- <style>
- div.main {
- padding-bottom: 20px;
- }
- .box {
- width: 32%;
- height: calc(50% - 20px);
- min-height: 310px;
- min-width: 370px;
- border: 1px solid #dcdcdc;
- border-top: 3px solid #00b0b9;
- margin: 20px 10px 0 0;
- box-sizing: border-box;
- float: right;
- }
- .box.r2 {
- height: calc(100% - 20px);
- }
- .box.c2 {
- width: calc(64% + 10px);
- }
- .box.c3 {
- width: 96%;
- }
- .box > .header {
- background-color: #f7f7f7;
- font-size: 14px;
- height: 40px;
- line-height: 40px;
- padding: 0 1em;
- }
- .box > .header > .title {
- display: inline;
- }
- .box > .header > .operate {
- display: inline;
- float: right;
- }
- .box > .header > .operate > a,
- .box > .header > .operate > .glyphicon {
- color: #333;
- margin-left: 8px;
- cursor: pointer;
- }
- .box > .content {
- padding: 1em;
- height: calc(100% - 40px);
- box-sizing: border-box;
- }
- .box > .content > ul,
- .box > .content > ul li {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .box > .content > ul li {
- height: 40px;
- line-height: 40px;
- border-bottom: 1px solid #e5e5e5;
- box-sizing: border-box;
- padding: 0 15px;
- }
- .box > .content > ul li:hover {
- background-color: #8fffee;
- }
- .box > .content > ul li > a {
- color: #333;
- cursor: pointer;
- width: calc(100% - 100px);
- display: inline-block;
- }
- .box > .content > ul li > .right {
- width: 100px;
- color: #999;
- float: right;
- }
- .box > .content > ul li > .right.new {
- color: #ff1f2e;
- }
- .box iframe {
- padding: 0;
- margin: 0;
- border: 0;
- height: 100%;
- width: 100%;
- overflow: hidden;
- }
- @media screen and (max-width: 780px) {
- .box {
- width: 95%;
- margin: 1em auto;
- float: none;
- }
- }
- </style>
- </head>
- <body id="ng-app">
- <div class="main" ng-app="main.panel" ng-controller="Ctrl">
- <c:if test="${sessionScope.get('OP_PANEL_DZX')}">
- <div class="box c3" ng-cloak>
- <div class="header">
- <div class="title">待办任务(大中型)</div>
- <div class="operate">
- <a ng-click="view('待办任务','/app/dyoa/order/order_todo.jsp');">
- <i class="glyphicon glyphicon-menu-right"></i>
- </a>
- </div>
- </div>
- <div class="content">
- <iframe ng-src="<%=contextPath%>/app/dyoa/order/order_todo_panel.jsp"></iframe>
- </div>
- </div>
- </c:if>
- <c:if test="${sessionScope.get('OP_PANEL_GD')}">
- <div class="box c3" ng-cloak>
- <div class="header">
- <div class="title">待办任务(个贷)</div>
- <div class="operate">
- <a ng-click="view('待办任务','/app/dyoa/order/loanOrder/loanOrder_todo.jsp');">
- <i class="glyphicon glyphicon-menu-right"></i>
- </a>
- </div>
- </div>
- <div class="content">
- <iframe ng-src="<%=contextPath%>/app/dyoa/order/loanOrder/loanOrder_todo_panel.jsp"></iframe>
- </div>
- </div>
- </c:if>
- </div>
- </body>
- <script type="text/javascript" src="<%=contextPath%>/app/base/resource/resource.js"></script>
- <script type="text/javascript" src="<%=contextPath%>/app/main/panel.js"></script>
- </html>
|