| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>sHR系统异常</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 0;
- padding: 0;
- background-color: #f0f2f5;
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 100vh;
- }
- .error-container {
- background-color: white;
- padding: 40px;
- border-radius: 8px;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
- text-align: center;
- max-width: 400px;
- width: 100%;
- }
- .error-icon {
- font-size: 64px;
- color: #ff4d4f;
- margin-bottom: 20px;
- }
- .error-title {
- color: #333;
- font-size: 24px;
- margin-bottom: 15px;
- }
- .error-message {
- color: #666;
- font-size: 16px;
- margin-bottom: 30px;
- line-height: 1.5;
- }
- .btn {
- display: inline-block;
- padding: 12px 30px;
- background-color: #1890ff;
- color: white;
- text-decoration: none;
- border-radius: 4px;
- font-size: 16px;
- transition: background-color 0.3s;
- }
- .btn:hover {
- background-color: #40a9ff;
- }
- </style>
- </head>
- <body>
- <div class="error-container">
- <div class="error-icon">⚠️</div>
- <%-- <h1 class="error-title">系统异常</h1>--%>
- <p>错误码:${errorCode}</p>
- <p class="error-message" th:text="${errorMsg}">${errorMsg}</p>
- </div>
- </body>
- </html>
|