123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org">
- <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="favicon.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/style.min.css" th:href="@{/css/style.min.css}" rel="stylesheet"/>
- </head>
- <body class="gray-bg">
- <!--<div class="row border-bottom white-bg dashboard-header">
- <!–<div class="col-sm-12">
- <blockquote class="text-warning" style="font-size:14px">
- </blockquote>
- <hr>
- </div>–>
- <div class="col-sm-3">
- <h2>Hello</h2>
- <br>
- <!–<img th:src="@{/img/login-background.png}" width="100%" style="max-width:264px;">–>
- <br>
- </div>
- <div class="col-sm-5">
- </div>
- <div class="col-sm-4" hidden>
- <h4>技术选型:</h4>
- <ol>
- <li>核心框架:Spring Boot。</li>
- <li>安全框架:Apache Shiro。</li>
- <li>模板引擎:Thymeleaf。</li>
- <li>持久层框架:MyBatis。</li>
- <li>定时任务:Quartz。</li>
- <li>数据库连接池:Druid。</li>
- <li>工具类:Fastjson。</li>
- <li>更多……</li>
- </ol>
- </div>
- </div>-->
- <!--<div class="wrapper wrapper-content">
- <div class="row">
- <div class="col-sm-4">
- <div class="ibox-title">
- <h5>更新日志</h5>
- </div>
- </div>
- <div class="col-sm-4">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>更新日志</h5>
- </div>
- </div>
- </div>
- <div class="col-sm-4">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>hh</h5>
- </div>
- </div>
- </div>
- </div>
- </div>-->
- <br>
- <div class="col-sm-12 search-collapse" >
- <img th:src="@{/img/login-background1.jpg}" width="99%" height="74%" >
- </div>
- <div class="row border-bottom white-bg dashboard-header">
- <!--<div class="col-sm-12">
- <blockquote class="text-warning" style="font-size:14px">
- </blockquote>
- <hr>
- </div>-->
- <div class="col-sm-3">
- <h2>Hello</h2>
- <br>
- <!--<img th:src="@{/img/login-background.png}" width="100%" style="max-width:264px;">-->
- <br>
- </div>
- <div class="col-sm-5">
- </div>
- <div class="col-sm-4" >
- <h4>技术选型:</h4>
- <ol>
- <li>核心框架:Spring Boot。</li>
- <li>安全框架:Apache Shiro。</li>
- <li>模板引擎:Thymeleaf。</li>
- <li>持久层框架:MyBatis。</li>
- <li>定时任务:Quartz。</li>
- <li>数据库连接池:Druid。</li>
- <li>工具类:Fastjson。</li>
- <li>更多……</li>
- </ol>
- </div>
- </div>
- <script th:src="@{/js/jquery.min.js}"></script>
- <script th:src="@{/js/bootstrap.min.js}"></script>
- <script th:src="@{/ajax/libs/layer/layer.min.js}"></script>
- <script type="text/javascript">
- $('#pay-qrcode').click(function(){
- var html=$(this).html();
- parent.layer.open({
- title: false,
- type: 1,
- closeBtn:false,
- shadeClose:true,
- area: ['600px', '360px'],
- content: html
- });
- });
- </script>
- </body>
- </html>
|