You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="zh-CN" xmlns:th="http://www.thymeleaf.org">
|
|
<header>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1"
|
|
/>
|
|
<title th:text="${fullName}"></title>
|
|
<link href="/static/assets/images/favicon.ico" rel="icon" />
|
|
<link
|
|
rel="stylesheet"
|
|
th:href="@{/static/assets/libs/layui/css/layui.css}"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
th:href="@{/static/assets/module/admin.css?v=318}"
|
|
/>
|
|
<!--[if lt IE 9]> <![endif]-->
|
|
<script
|
|
type="text/javascript"
|
|
th:src="@{/static/assets/libs/layui/layui.js}"
|
|
></script>
|
|
<script
|
|
type="text/javascript"
|
|
th:src="@{/static/assets/js/common.js?v=318}"
|
|
></script>
|
|
|
|
<script type="text/javascript">
|
|
var url = window.location.pathname.substring(1);
|
|
var item = url.split("/");
|
|
var C = item[1];
|
|
var A = item[2];
|
|
var cUrl = "/zsjyapi/" + C;
|
|
//alert(cUrl);
|
|
</script>
|
|
</head>
|
|
</header>
|
|
</html>
|