123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <!--360浏览器优先以webkit内核解析-->
- <title></title>
- <link rel="shortcut icon" href="faviconOld.ico">
- <link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
- <link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
- <link href="../static/css/animate.min.css" th:href="@{/css/animate.min.css}" rel="stylesheet"/>
- <link href="../static/css/style.min862f.css" th:href="@{/css/style.min862f.css}" rel="stylesheet"/>
- <th:block th:include="include :: header('首页')" />
- <style type="text/css">
- .aInput {
- position: relative;
- color: rgba(255,255,255,1);
- text-decoration: none;
- background-color: rgba(60,141,188,1);
- font-family: 'Yanone Kaffeesatz';
- /*font-weight: 700;*/
- /*font-size: 2em;*/
- display: block;
- padding: 4px;
- -webkit-border-radius: 20px;
- -moz-border-radius: 20px;
- border-radius: 20px;
- -webkit-box-shadow: 0px 9px 0px rgba(60,141,188,1), 0px 9px 25px rgba(60,64,81,.7);
- -moz-box-shadow: 0px 9px 0px rgba(60,141,188,1), 0px 9px 25px rgba(60,64,81,.7);
- box-shadow: 0px 9px 0px rgba(60,141,188,1), 0px 9px 25px rgba(60,64,81,.7);
- margin: 20px auto;
- width: 60px;
- height: 60px;
- text-align: center;
- -webkit-transition: all .1s ease;
- -moz-transition: all .1s ease;
- -ms-transition: all .1s ease;
- -o-transition: all .1s ease;
- transition: all .1s ease;
- }
- .aInput:active {
- -webkit-box-shadow: 0px 3px 0px rgba(60,141,188,1), 0px 3px 6px rgba(60,64,81,.9);
- -moz-box-shadow: 0px 3px 0px rgba(60,141,188,1), 0px 3px 6px rgba(60,64,81,.9);
- box-shadow: 0px 3px 0px rgba(60,141,188,1), 0px 3px 6px rgba(60,64,81,.9);
- position: relative;
- top: 6px;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="container-div">
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h3>系统状态</h3>
- </div>
- <div class="row" >
- <div class="col-sm-3" th:each="dangan:${danganList}">
- <div class="float-e-margins" style="text-align: center;border: none">
- <div >
- <!--<input type="text" th:value="${#httpServletRequest.getScheme() + '://' + #httpServletRequest.getServerName() + ':' + #request.getServerPort()}">-->
- <!--<button class="btn btn-primary dim" type="button" th:style="'background:url(' +${dangan.dangan==null?'':dangan.dangan.iconInfo}+') no-repeat center center;width:50px;height:50px;background-size:100% 100%'" th:onclick="opennewpage([[${dangan.danganUrl}]] ,[[${dangan.danganNums} ]]);">-->
- <a class="aInput" th:style="'background:url(' +${dangan.dangan==null?'':dangan.dangan.iconInfo}+') no-repeat center center;background-size:100% 100%'" th:onclick="opennewpage([[${dangan.danganUrl}]] ,[[${dangan.danganNums} ]]);"></a>
- <h3 class="no-margins" style="color:#1e9fff" th:text="${dangan.danganName}"></h3>
- <h4 th:text="${@dict.getLabel('sys_dangan_status', dangan.danganStatus)}" ></h4><br>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script th:inline="javascript">
- var sessionId = [[${sessionId}]];
- function opennewpage(url,danganLoginName) {
- // window.location.href=url;
- url = url+"?"+"reqid="+sessionId;
- console.log(url)
- window.open(url)
- // console.log(danganLoginName)
- //
- // console.log(sessionId)
- }
- </script>
- </body>
- </html>
|