<!DOCTYPE html>
<html lang="zh">
<head>
<th:block th:include="include :: header('操作异常')" />
</head>
<body class="gray-bg">
<div class="middle-box text-center animated fadeInDown">
<h3 class="font-bold">操作异常!</h3>
<div class="error-desc" style="padding-top: 10px">
[[${errorMessage}]]
<br><button onclick="goHome()" th:if="${type==null || type == ''}" class="btn btn-primary m-t">首页</button>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
function goHome(){
$.modal.closeTab();
$.modal.openTab('首页', ctx + "/main");
}
</script>
</body>
</html>
-
赵啸非 authored6d68da3c