12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>新疆阿勒泰科技服务平台</title>
- <!-- Tell the browser to be responsive to screen width -->
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- Font Awesome -->
- <link rel="stylesheet" href="${contextPath}/dist/js/layui/css/layui.css">
- <link rel="stylesheet" href="${contextPath}/dist/css/admin.css" media="all">
- </head>
- <body class="layui-layout-body">
- <div class="layui-layout layui-layout-admin">
- <!-- Navbar -->
- <#include "body/top.html">
- <!-- /.navbar -->
- <!-- Main Sidebar Container -->
- <#include "body/left.html">
- <!-- Content Wrapper. Contains page content -->
- <div class="layui-body">
- <!-- 内容主体区域 -->
- <h3 style="overflow:hidden; border:0px solid #CCC; padding:3px; margin:10px;">欢迎使用</h3>
- <div style="padding:10px; overflow:hidden;height:350px;width:900px;" id="main"></div>
- </div>
- <!-- /.content-wrapper -->
- <#include "body/footer.html">
- </div>
- <!-- ./wrapper -->
- <script src="${contextPath}/dist/js/layui/layui.js"></script>
- <script type="text/javascript" src="${contextPath}/dist/js/jquery-1.11.1.min.js"></script>
- <script>
- //JavaScript代码区域
- layui.use('element', function(){
- var element = layui.element;
-
- });
- </script>
- </body>
- </html>
|